SpringBoot4-Web5-烂尾
需求
员工列表
普通CRUD | restfulCRUD | |
---|---|---|
查询 | getEmp | emp...GET |
添加 | addEmp? | emp...POST |
修改 | updateEmp? | emp/{id}...PUT |
删除 | deleteEmp? | emp/{id}...DELETE |
架构
请求URL | 请求方式 | |
---|---|---|
查询所有员工 | emps | GET |
查询单个员工 | emp/{id} | GET |
来到添加页面 | emp | GET |
添加员工 | emp | POST |
来到修改页面 | emp/{id} | GET |
修改员工 | emp | PUT |
删除员工 | emp/{id} | DELETE |
修改|updateEmp?|emp/{id}...PUT 删除|deleteEmp?|emp/{id}...DELETE
1 | <footer th:fragment="copy"> |
insert 是将整个元素插入到引用中 replace 是替换 include 是包含进去 1
<div th:fragment="topbar"> 这里测试 include replace 和insert</div>
1
2
3<div id="include" th:include="~{templates_hello::topbar}">hi</div>
<div id="replace" th:replace="templates_hello::topbar">hi</div>
<div id="insert" th:insert="templates_hello::topbar">hai</div>1
2
3<div id="include"> 这里测试 include replace 和insert</div>
<div> 这里测试 include replace 和insert</div>
<div id="insert"><div> 这里测试 include replace 和insert</div></div>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
public DefaultErrorAttributes errorAttributes() {
return new DefaultErrorAttributes(this.serverProperties.getError().isIncludeException());
}
public BasicErrorController basicErrorController(ErrorAttributes errorAttributes,
ObjectProvider<ErrorViewResolver> errorViewResolvers) {
return new BasicErrorController(errorAttributes, this.serverProperties.getError(),
errorViewResolvers.orderedStream().collect(Collectors.toList()));
}
public ErrorPageCustomizer errorPageCustomizer(DispatcherServletPath dispatcherServletPath) {
return new ErrorPageCustomizer(this.serverProperties, dispatcherServletPath);
}
DefaultErrorViewResolver conventionErrorViewResolver() {
return new DefaultErrorViewResolver(this.applicationContext, this.resourceProperties);
}
这老师是源码杀手,我要炸了,我现在开始怕源码了 这里分两类,一个返回html,另一个返回json,区分浏览器,浏览器优先接受html,但是客户端优先接受/*, 没有要求,所以对浏览器返回,html,对客户端返回json
1 |
|
所以到底如何定制?
有模版引擎的话,就在error下写一个404.html就可以了,你甚至可以用4xx.html来批评所有的4开头的错误 1
<h1>status:[[${status}]]</h1>
嵌入式servlet容器
默认是tomcat ### 如何定制修改servlet容器 - 方法1 使用server.port = 8081 server.tomcat.xxx 1
2
public class ServerProperties {1
2
3
4
5
6
7
8
9
10
public WebServerFactoryCustomizer<ConfigurableWebServerFactory> webServerFactoryWebServerFactoryCustomizer(){
return new WebServerFactoryCustomizer<ConfigurableWebServerFactory>(){
public void customize(ConfigurableWebServerFactory factory) {
factory.setPort(8083);
}
};
}
嵌入式的tomcat如何实现
源码警告 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public class EmbeddedWebServerFactoryCustomizerAutoConfiguration {
/**
* Nested configuration if Tomcat is being used.
*/
public static class TomcatWebServerFactoryCustomizerConfiguration {
public TomcatWebServerFactoryCustomizer tomcatWebServerFactoryCustomizer(Environment environment,
ServerProperties serverProperties) {
return new TomcatWebServerFactoryCustomizer(environment, serverProperties);
}
}
配置修改是如何生效的
配置文件+定制器, 他们本质上都是定制器 有一个BeanPostProcessorRegistrar, 导入了EmbeddedServletContainerCustomizerBeanPostProcessor
SpringBoot根据导入的依赖情况,给容器添加相应的容器工厂, 容器中某个组件要创建对象就会惊动后置处理器, 只要是嵌入式的servlet容器工厂,后置处理器就会工作, 后置处理器会从容器中获取所有的定制器,调用定制器的方法。
嵌入式servlet什么时候创建
springboot启动, 运行run, 创建IOC容器, 并初始化, 创建容器中的每个bean, 如果是web应用就创建web容器,否则创建AnnotationConfigApplicationContext, 在web的IOC容器中, 重写了onRefresh, 在这里创建了嵌入式的Servlet, 获取容器工厂, tomcatembeddedservletcontainerfactory创建对象以后,后置处理器就开始配置,然后获得新的servlet容器,最后启动 ### 优点 简单便携 ### 缺点 不支持jsp