springboot学习心得

1. 修改代码不需要重新部署  spring-boot-devtools   


    true

    某些资源在更改时不一定需要触发重新启动,如果逆向排除这些路径,可以使用如下配置:                                                                  spring.devtools.restart.exclude=static/**,public/**

2. 使用thymeleaf时,要用@controller+@responsebody

对于springboot2.0的需要引入thymeleaf的版本,否则html被当xml解析

3.0.9.RELEASE

3.分页不起作用 


    com.github.pagehelper
    pagehelper
    4.1.0

 

你可能感兴趣的:(spring)