-
SpringBoot 使用场景<br/>查看全部
-
SpringBoot 特点
查看全部 -
需要了解Mysql的事务隔离级别和传播行为
查看全部 -
#thymeleaf 静态资源配置
spring.thymeleaf.prefix=classpath:/templates
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=HTML5
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.content-type=text/html
#开发时关闭缓存 线上改为true
spring.thymeleaf.cache=false
查看全部 -
jsonIgnore:不显示返回字段
jsonFormat:格式化日期(pattern="yyyy-MM-dd hh:mm:ss a",locale="zh",timezone="GMT+8")
jsonInclude:不显示为空字段(Include.NON_NULL)
查看全部 -
#freemarker 静态资源配置
#设定ftl文件路径
spring.freemarker.template-loader-path=classpath:/templates
#关闭缓存,即时刷新,上线生产环境需改为true
spring.freemarker.cache=false
spring.freemarker.charset=UTF-8
spring.freemarker.check-template-location=true
spring.freemarker.content-type=text/html
spring.freemarker.expose-request-attributes=true
spring.freemarker.expose-session-attributes=true
spring.freemarker.request-context-attributes=request
#设置freemarker后缀
spring.freemarker.suffix=.ftl
查看全部 -
查看全部
-
@RestController = @Controller +@ResponseBody
查看全部 -
查看全部
-
springboot整合mybatis
查看全部 -
SpringMVC的配置方式是这样的
查看全部 -
@EnableAsync
@Async
查看全部 -
和热部署冲突 需要注释掉
查看全部 -
@ComponentScan(basePackages = {"com.imooc","org.n3r.idworker"})
外部包
查看全部 -
Note: further occurrences of this error will be logged at DEBUG level. 未知错误待解决
查看全部
举报