thymeleaf
文章平均质量分 65
尾张大
这个作者很懒,什么都没留下…
展开
-
使用thymeleaf解决访问不到templates下的html文件
pom文件 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> resources下的 applicati...原创 2019-06-29 22:59:56 · 14836 阅读 · 13 评论 -
springboot+mybatis+druid+mysql+thymeleaf项目结构配置
1.在IDEA创建springboot项目,有两种方式,一种是先创建maven项目,自己在加入sringboot启动注解和resources目录。另外是直接创建springboot的demo。这里因为网络不好的原因,总是连不上spring的官网,就使用第一种通过maven的方式来创建。 第一种:先打开IDEA,选择quickstart模板 修改启动类 添加resources目录和配置文件,以及...原创 2019-09-15 15:45:08 · 653 阅读 · 0 评论 -
@RestController,@Controller, @ResponseBody以及thymeleaf页面的搭配使用
在最开始接触@RestController时,知道了它相当于@Controller+ @ResponseBody两者的结合。 @Controller 的使用一般是加在控制层,加上之后就是可以被spring管理,也没其他的作用。 @ResponseBody作用是将controller的方法返回的对象通过适当的转换器转换为指定的格式之后,写入到response对象的body区,通常用来返回JSON数据...原创 2019-09-15 23:08:20 · 2976 阅读 · 5 评论