JAR :webapp!
自动装配
在进行一个springboot项目开发前需要解决的问题:
- 导入静态资源。。
- 首页
- jsp,模版引擎Thymeleaf
- 装配扩展springMVC
- 增删改查
- 拦截器
- 国际化!
静态资源
1.在springboot,我们可以使用一下方式处理静态资源
- webjars localhost:8080/webjars
- public,static,/**,resources localhost:8080/
- 优先级:resources>ststic(默认)>public
模版引擎
只要需要使用thymeleaf,只需要导入对应的依赖就可以了!!!我们将html放在我们的templates目录下即可!
private static final Charset DEFAULT_ENCODING;
public static final String DEFAULT_PREFIX = "classpath:/templates/";
public static final String DEFAULT_SUFFIX = ".html";
private boolean checkTemplate = true;
private boolean checkTemplateLocation = true;
private String prefix = "classpath:/templates/";
private String suffix = ".html";
private String mode = "HTML";
此处使用的是aliyun镜像配置的springboot环境