springboot
文章平均质量分 79
xjwtt
这个作者很懒,什么都没留下…
展开
-
thymeleaf模板对没有结束符的HTML5标签解析出错的解决办法
spring.thymeleaf.content-type=text/html spring.thymeleaf.cache=false spring.thymeleaf.mode =LEGACYHTML5 LEGACYHTML5需要搭配一个额外的库NekoHTML才可用 项目中使用的构建工具是Maven添加如下的依赖即可完成: pom.xml 中引入 <...原创 2017-10-17 13:45:14 · 124 阅读 · 0 评论 -
springboot结合flyway自动创建数据库及表格
编写DataSource ,在程序启动的时候判断数据库是否存在,如果存在不做任何操作,如果不存在则创建数据库 import com.alibaba.druid.pool.DruidDataSource; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.fa...原创 2017-12-19 15:05:04 · 4550 阅读 · 1 评论