摘要:
1.在SpringBoot中,通过以下方式处理静态资源: webjars localhost:8080/webjars classpath:public,static,/**,resources localhost:8080/ 优先级:resources>static>public 2.模板引擎 只 阅读全文
摘要:
使用@Controller时需要用@ResponseBody注释 Spring 3.x 或使用@Controller情况下,在方法上使用@ResponseBody注释时,Spring会转换返回值并自动将其写入HTTP响应。Controller类中的每个方法都必须使用@ResponseBody进行注释 阅读全文