springboot的使用
即墨`灯会
这个作者很懒,什么都没留下…
展开
-
sprinboot用thymelaf总访问不到静态资源
pom<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId></dependency>ymlspring: #thymeleaf默认目录是templates,后缀.html,编码utf-8 thymeleaf: #关闭缓存,保持实原创 2022-04-01 23:09:37 · 319 阅读 · 0 评论 -
java base64字符串与图片相互转换
先引入hutool工具包<dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>5.6.7</version></dependency> @Test public void base64ImageTest(){ //得到字节流原创 2021-06-15 21:18:47 · 1847 阅读 · 0 评论 -
springboot 日志配置
spirngboot默认会使用logback日志框架,用SL4J接口来管理logback,log4j这些框架。application.yml配置logging: level: root: info com.shuzhi.log: debug org.springframework.security: warn file: name: log/music.log默认会创建一个目录log,再创建一个文件music.log来保存日志当大小超过200kb时会自动打包原创 2020-12-25 15:26:05 · 189 阅读 · 0 评论 -
springboot整合swagger ,自动接口文档管理
导入maven的swagger包 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.6.1</version> </dependency> <原创 2020-12-16 17:35:14 · 119 阅读 · 0 评论 -
tk.mybatis错误
博主,尝试了一天的tk.mybatis,最终发现了这个错误。org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.builder.BuilderException: Error invoking SqlProvider method (tk.mybatis.mapper.provider...原创 2020-04-08 21:55:24 · 498 阅读 · 0 评论 -
spingboot系列之freemark学习
导入pom包<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-freemarker</artifactId> </dependency>yml配置spring: freemarker: ...原创 2020-01-21 18:59:45 · 178 阅读 · 0 评论 -
thymeleaf layout使用
https://www.jianshu.com/p/755d5c78703d原创 2020-01-05 00:11:04 · 350 阅读 · 0 评论 -
th:include、th:replace、th:insert区别
首先先在pom中引入thymeleaf的依赖 <!--thymeleaf--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-t...转载 2020-01-04 21:40:09 · 428 阅读 · 0 评论