-
简 介
查看全部 -
热部署的配置
查看全部 -
jackson的基本用法
查看全部 -
了解:使用微服务SpringCloud和阿里的Dubbo的前提是使用SpringBoot。
SpringBOOT简介:微框架,与Spring4一起诞生。可以快速上手,整合了一些子项目(开源框架或者第三方开源库),直接引入即可,已经做好了封装。依赖很少配置就可以快速搭建并运行项目。SpringBOOT可以创建独立运行的应用而不依赖于容器(不需要打包成war包,可以放入tomcat中直接运行)。
特点:
提供Maven极简配置,缺点是会引入很多不需要的jar包。
简化配置,不用过多的xml配置(通过注解实现xml配置文件功能)
查看全部 -
https://github.com/leechenxiang/imooc-springboot-starter
查看全部 -
选择框<option th:selected="${user.name eq 'Lee'}">Lee</option>,判断是否是Lee,决定选择框默认展示什么
th:each="person:$userList}"
th:switch="${user.name}"
查看全部 -
th:if="${user.age} == 18"
gt greater than 大于
lt less than 小于
ge great and equal 大于等于
le less and equal 小于等于
查看全部 -
th:href="@{http://www.imooc.com}"
<script th:src="@{/static/js/test.js}"></script> 引入js
<form th:action="@{/th/postform}" th:object="${user}" method="post" th:method="post">
<input type="text" th:field="*{name}"/>
<input type="text" th:field="*{age}"/>
<input type="submit"/>
</form>
查看全部 -
th:id="${user.name}"
th:name
th:value="${#dates.format(user.birthday, 'yyyy-MM-dd')}"
th:object="${user}" th:id="*{name}"
text和utext
th:text="${user.desc}" 直接打印所有
th:utext="${user.desc}" html css会生效
查看全部 -
Whitelabel Error Page
原因一:helloworld类没有和main方法所在的类在一个包下
原因二:
@RestController
@RequestMapping("/hello")
映射问题
查看全部 -
springboot:资源文件属性配置可以通过注解映射到实体类,再将实体类注入到controller或者是service里去
查看全部 -
springboot修改tomcat配置查看全部
-
如果要用spring-boot-starter-parent2.0之后的版本 spring.thymeleaf.content-type 改为 spring.thymeleaf.servlet.content-type=text/html
查看全部 -
springboot整合模板引擎freemarker,thymeleaf
pom.xml 导入freemarker依赖
配置freemarker
查看全部 -
springboot:资源文件属性配置可以通过注解映射到实体类,再将实体类注入到controller或者是service里去
首先,添加依赖
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
```
建resource.properties文件
前缀:com.imooc.opensource;属性:name,website,language
```
com.imooc.opensource.name=imooc
com.imooc.opensource.website=www.imooc.com
com.imooc.opensource.language=java
```
创建实体类Resource,有name,website,language三个属性,getter和setter方法
在Resource实体类头部加注解
@Configration:代表此类会引用资源文件
@ConfigurationProperties(prefix="前缀") : 做映射时,只把前缀后面的属性映射到实体类的字段里去
@PropertySource(value="classpath:resource.properties"):要引用的资源文件的位置
查看全部
举报