Spring Boot内部启动一个嵌入式Web容器。Tomcat是组件化设计,所以就是启动这些组件。
Tomcat独立部署模式是通过startup脚本启动,Tomcat的Bootstrap和Catalina负责初始化类加载器,并解析server.xml和启动这些组件。
内嵌模式
Bootstrap和Catalina的工作由Spring Boot代劳,Spring Boot调用Tomcat API启动这些组件。
1 Spring Boot中Web容器接口
1.1 WebServer
为支持各种Web容器,Spring Boot抽象出嵌入式Web容器,定义WebServer接口:
public interface WebServer {void start() throws WebServerException;void stop() throws WebServerException;int getPort();/*** Initiates a graceful shutdown of the web server. Handling of new requests is* prevented and the given {@code callback} is invoked at the end of the attempt. The* attempt can be explicitly ended by invoking {@link #stop}. The default* implementation invokes the callback immediately with* {@link GracefulShutdownResult#IMMEDIATE}, i.e. no attempt is made at a graceful* shutdown.* @param callback the callback to invoke when the graceful shutdown completes* @since 2.3.0*/default void shutDownGracefully(GracefulShutdownCallback callback) {callback.shutdownComplete(GracefulShutdownResult.IMMEDIATE);}default void destroy() {stop();}}
Web容器比如Tomcat去实现该接口
1.2 ServletWebServerFactory
创建Web容器,返回的就是WebServer。
public interface ServletWebServerFactory {WebServer getWebServer(ServletContextInitializer... initializers);
}
ServletContextInitializer入参表示ServletContext的初始化器,用于ServletContext中的一些配置:
public interface ServletContextInitializer {void onStartup(ServletContext servletContext) throws ServletException;
}
getWebServer会调用ServletContextInitializer#onStartup,即若想在Servlet容器启动时做一些事情,如注册自己的Servlet,可实现一个ServletContextInitializer,在Web容器启动时,Spring Boot会把所有实现ServletContextInitializer接口的类收集起来,统一调其onStartup。
1.3 WebServerFactoryCustomizerBeanPostProcessor
一个BeanPostProcessor,为定制化嵌入式Web容器,在postProcessBeforeInitialization过程去寻找Spring容器中WebServerFactoryCustomizer类型的Bean,并依次调用WebServerFactoryCustomizer接口的customize方法做一些定制化。
public interface WebServerFactoryCustomizer<T extends WebServerFactory> {void customize(T factory);
}
2 创建、启动嵌入式Web容器
Spring的ApplicationContext,其抽象实现类AbstractApplicationContext#refresh
protected void refresh(ApplicationContext applicationContext) {Assert.isInstanceOf(AbstractApplicationContext.class, applicationContext);((AbstractApplicationContext) applicationContext).refresh();
}
用来新建或刷新一个ApplicationContext,在refresh中会调用onRefresh,AbstractApplicationContext子类可重写onRefresh实现Context刷新逻辑。
ServletWebServerApplicationContext重写onRefresh以创建嵌入式Web容器:
@Override
protected void onRefresh() {super.onRefresh();try {// 创建和启动TomcatcreateWebServer();}catch (Throwable ex) {throw new ApplicationContextException("Unable to start web server", ex);}
}
createWebServer
private void createWebServer() {// WebServer是Spring Boot抽象出来的接口,具体实现类就是不同Web容器WebServer webServer = this.webServer;ServletContext servletContext = this.getServletContext();// 若Web容器尚未创建if (webServer == null && servletContext == null) {// 通过Web容器工厂创建ServletWebServerFactory factory = this.getWebServerFactory();// 传入一个"SelfInitializer"this.webServer = factory.getWebServer(new ServletContextInitializer[]{this.getSelfInitializer()});} else if (servletContext != null) {try {this.getSelfInitializer().onStartup(servletContext);} catch (ServletException var4) {...}}this.initPropertySources();
}
getWebServer
以Tomcat为例,主要调用Tomcat的API去创建各种组件:
public WebServer getWebServer(ServletContextInitializer... initializers) {// 1.实例化一个Tomcat【Server组件】Tomcat tomcat = new Tomcat();// 2. 创建一个临时目录File baseDir = this.baseDirectory != null ? this.baseDirectory : this.createTempDir("tomcat");tomcat.setBaseDir(baseDir.getAbsolutePath());// 3.初始化各种组件Connector connector = new Connector(this.protocol);tomcat.getService().addConnector(connector);this.customizeConnector(connector);tomcat.setConnector(connector);tomcat.getHost().setAutoDeploy(false);this.configureEngine(tomcat.getEngine());// 4. 创建定制版的"Context"组件this.prepareContext(tomcat.getHost(), initializers);return this.getTomcatWebServer(tomcat);
}
prepareContext的Context指Tomcat的Context组件,为控制Context组件行为,Spring Boot自定义了TomcatEmbeddedContext类,继承Tomcat的StandardContext:
public class TomcatEmbeddedContext extends StandardContext
3 注册Servlet
Q:有@RestController,为啥还自己去注册Servlet给Tomcat?
A:可能有些场景需注册你自定义的一个Servlet提供辅助功能,与主程序分开。
Q:SprongBoot不注册Servlet给Tomcat,直接用@Controller就能实现Servlet功能是为啥呢?
A:因为SprongBoot默认给我们注册了DispatcherSetvlet。
3.1 Servlet注解
SpringBoot启动类加@ServletComponentScan后,@WebServlet、@WebFilter、@WebListener标记的Servlet、Filter、Listener就可自动注册到Servlet容器:
@SpringBootApplication
@ServletComponentScan // 扫描同包下的 MyAuthFilter
public class DemoApplication { public static void main(String[] args) {SpringApplication.run(DemoApplication.class, args);}
}@WebFilter(filterName = "myAuth", urlPatterns = "/*")
public class MyAuthFilter implements Filter {@Autowiredprivate TokenService tokenService; // 只能通过容器注入@Overridepublic void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain) throws IOException, ServletException {// …}
}
在Web应用的入口类上加上@ServletComponentScan,并且在Servlet类上加上@WebServlet,这样Spring Boot会负责将Servlet注册到内嵌的Tomcat中。
3.2 ServletRegistrationBean
SpringBoot提供:
ServletRegistrationBean
FilterRegistrationBean
ServletListenerRegistrationBean
分别来注册Servlet、Filter、Listener。
如注册一个Servlet:
// Spring框架中注册Servlet的常见方式,将自定义的Servlet映射到指定的URL路径
@Bean
public ServletRegistrationBean servletRegistrationBean() {return new ServletRegistrationBean(new HelloServlet(), "/hello");
}
返回一个ServletRegistrationBean,并将它当作Bean注册到Spring,因此你需要把这段代码放到Spring Boot自动扫描的目录中,或放到@Configuration标识的类中。
Spring会把这种类型的Bean收集起来,根据Bean里的定义向Tomcat注册Servlet。
3.3 动态注册
可创建一个类去实现ServletContextInitializer接口,并把它注册为一个Bean,Spring Boot会负责调用这个接口的onStartup。
实现ServletContextInitializer接口的类会被spring管理,而不是被Servlet容器管理。
@Component
public class MyServletRegister implements ServletContextInitializer {// 参数是ServletContext,可通过调其addServlet方法动态注册新的Servlet,这是Servlet 3.0后才有的功能@Overridepublic void onStartup(ServletContext servletContext) {// Servlet 3.0规范新的APIServletRegistration myServlet = servletContext.addServlet("HelloServlet", HelloServlet.class);myServlet.addMapping("/hello");myServlet.setInitParameter("name", "Hello Servlet");}}
ServletRegistrationBean也是通过ServletContextInitializer实现,实现ServletContextInitializer接口。
通过 ServletContextInitializer 接口可以向 Web 容器注册 Servlet,实现 ServletContextInitializer 接口的Bean被speing管理,但是在什么时机触发其onStartup()方法的呢? 通过 Tomcat 中的 ServletContainerInitializer 接口实现者,如TomcatStarter,创建tomcat时设置了该类,在tomcat启动时会触发ServletContainerInitializer实现者的onStartup()方法,在这个方法中触发ServletContextInitializer接口的onStartup()方法,如注册DispatcherServlet。
DispatcherServletRegistrationBean实现了ServletContextInitializer接口,它的作用就是向Tomcat注册DispatcherServlet,那它是在什么时候、如何被使用的呢? prepareContext方法调用了另一个私有方法configureContext,这个方法就包括了往Tomcat的Context添加ServletContainerInitializer对象:
context.addServletContainerInitializer(starter, NO_CLASSES);
其中有DispatcherServletRegistrationBean。
4 定制Web容器
在Spring Boot中定制Web容器。如Spring Boot 2.0中可通过如下方式:
4.1 ConfigurableServletWebServerFactory
通用的Web容器工厂,定制Web容器通用参数:
@Component
public class MyGeneralCustomizer implementsWebServerFactoryCustomizer<ConfigurableServletWebServerFactory> {public void customize(ConfigurableServletWebServerFactory factory) {factory.setPort(8081);factory.setContextPath("/hello");}
}
4.2 TomcatServletWebServerFactory
通过特定Web容器工厂进一步定制。
给Tomcat新增个V3alve,以向请求头里添加traceid,用于分布式追踪。
class TraceValve extends ValveBase {@Overridepublic void invoke(Request request, Response response) throws IOException, ServletException {request.getCoyoteRequest().getMimeHeaders().addValue("traceid").setString("1234xxxxabcd");Valve next = getNext();if (null == next) {return;}next.invoke(request, response);}}
跟方式一类似,再添加一个定制器:
@Component
public class MyTomcatCustomizer implementsWebServerFactoryCustomizer<TomcatServletWebServerFactory> {@Overridepublic void customize(TomcatServletWebServerFactory factory) {factory.setPort(8081);factory.setContextPath("/hello");factory.addEngineValves(new TraceValve() );}
}
<a href="https://m.weibo.cn/detail/5209327448100375">卑萧</a> <a href="https://m.weibo.cn/detail/5209327399077382">畸</a> <a href="https://m.weibo.cn/detail/5209327151349802">瞭颊</a> <a href="https://m.weibo.cn/detail/5209327142962266">峻弥</a> <a href="https://m.weibo.cn/detail/5209327125924398">蝙</a> <a href="https://m.weibo.cn/detail/5209327113601207">圃</a> <a href="https://m.weibo.cn/detail/5209327092107220">揽</a> <a href="https://m.weibo.cn/detail/5209327086339183">戈</a> <a href="https://m.weibo.cn/detail/5209326974665424">涣</a> <a href="https://m.weibo.cn/detail/5209326902055021">敷</a> <a href="https://m.weibo.cn/detail/5209326857226081">枷</a> <a href="https://m.weibo.cn/detail/5209326834683683">隘</a> <a href="https://m.weibo.cn/detail/5209326824458600">囤</a> <a href="https://m.weibo.cn/detail/5209326824196205">秸</a> <a href="https://m.weibo.cn/detail/5209326801391476">壕</a> <a href="https://m.weibo.cn/detail/5209326744767306">莉</a> <a href="https://m.weibo.cn/detail/5209326715143403">裸</a> <a href="https://m.weibo.cn/detail/5209326648296817">侣</a> <a href="https://m.weibo.cn/detail/5209326623131932">榔</a> <a href="https://m.weibo.cn/detail/5209326564412452">玄</a> <a href="https://m.weibo.cn/detail/5209326532690157">琅</a> <a href="https://m.weibo.cn/detail/5209326526663390">稽</a> <a href="https://m.weibo.cn/detail/5209325745996672">咪锥</a> <a href="https://m.weibo.cn/detail/5209325716374594">蒿</a> <a href="https://m.weibo.cn/detail/5209325651888060">闰孵</a> <a href="https://m.weibo.cn/detail/5209325636944735">猖</a> <a href="https://m.weibo.cn/detail/5209325624625150">魏擂</a> <a href="https://m.weibo.cn/detail/5209325539951947">哺</a> <a href="https://m.weibo.cn/detail/5209325531301823">榛瀑</a> <a href="https://m.weibo.cn/detail/5209325414384368">沽</a> <a href="https://m.weibo.cn/detail/5209325410976260">绎讶</a> <a href="https://m.weibo.cn/detail/5209325390005626">腕揣</a> <a href="https://m.weibo.cn/detail/5209325313199318">坞屁</a> <a href="https://m.weibo.cn/detail/5209325278855758">冕湃</a> <a href="https://m.weibo.cn/detail/5209325270205174">霎泞</a> <a href="https://m.weibo.cn/detail/5209325221186271">诲雏</a> <a href="https://m.weibo.cn/detail/5209325171900540">腻秕</a> <a href="https://m.weibo.cn/detail/5209325165349739">枚撵</a> <a href="https://m.weibo.cn/detail/5209325091422559">综唠</a> <a href="https://m.weibo.cn/detail/5209325068881456">躏饵</a> <a href="https://m.weibo.cn/detail/5209325061540697">郭橄</a> <a href="https://m.weibo.cn/detail/5209325056559415">擒</a> <a href="https://m.weibo.cn/detail/5209324976604420">茴篱</a> <a href="https://m.weibo.cn/detail/5209324878037388">溅</a> <a href="https://m.weibo.cn/detail/5209324848941936">吱瓤</a> <a href="https://m.weibo.cn/detail/5209324776851647">婴</a> <a href="https://m.weibo.cn/detail/5209324758764220">瘾杉</a> <a href="https://m.weibo.cn/detail/5209324760335875">挫</a> <a href="https://m.weibo.cn/detail/5209324738842050">溢枢</a> <a href="https://m.weibo.cn/detail/5209324738577848">帕</a> <a href="https://m.weibo.cn/detail/5209324734386116">募</a> <a href="https://m.weibo.cn/detail/5209324670682826">卢</a> <a href="https://m.weibo.cn/detail/5209324649713167">诽</a> <a href="https://m.weibo.cn/detail/5209324636866078">嘹</a> <a href="https://m.weibo.cn/detail/5209324629789736">虐</a> <a href="https://m.weibo.cn/detail/5209324626118631">瑟</a> <a href="https://m.weibo.cn/detail/5209324603310960">肘</a> <a href="https://m.weibo.cn/detail/5209324582341272">徘</a> <a href="https://m.weibo.cn/detail/5209324558751104">瞬</a> <a href="https://m.weibo.cn/detail/5209324554557358">贾</a> <a href="https://m.weibo.cn/detail/5209324554814442">赫</a> <a href="https://m.weibo.cn/detail/5209324410637640">肮</a> <a href="https://m.weibo.cn/detail/5209324401986734">雳</a> <a href="https://m.weibo.cn/detail/5209324323865783">吕</a> <a href="https://m.weibo.cn/detail/5209324357944848">掖</a> <a href="https://m.weibo.cn/detail/5209324330681698">凛</a> <a href="https://m.weibo.cn/detail/5209324322555890">毡</a> <a href="https://m.weibo.cn/detail/5209324318360253">酪</a> <a href="https://m.weibo.cn/detail/5209324307350539">沧</a> <a href="https://m.weibo.cn/detail/5209324221892736">昔</a> <a href="https://m.weibo.cn/detail/5209324193841555">谓</a> <a href="https://m.weibo.cn/detail/5209324181261776">羹</a> <a href="https://m.weibo.cn/detail/5209324151637991">脐</a> <a href="https://m.weibo.cn/detail/5209324135909269">谭</a> <a href="https://m.weibo.cn/detail/5209324101308895">挟</a> <a href="https://m.weibo.cn/detail/5209324071685661">翔</a> <a href="https://m.weibo.cn/detail/5209324064344004">芭</a> <a href="https://m.weibo.cn/detail/5209324028691024">唬</a> <a href="https://m.weibo.cn/detail/5209324026595406">鹦</a> <a href="https://m.weibo.cn/detail/5209324021355084">耘钦</a> <a href="https://m.weibo.cn/detail/5209324021877155">馍</a> <a href="https://m.weibo.cn/detail/5209324017157276">卓砾</a> <a href="https://m.weibo.cn/detail/5209324014012495">揩</a> <a href="https://m.weibo.cn/detail/5209324001430316">歹措</a> <a href="https://m.weibo.cn/detail/5209323942710418">涡</a> <a href="https://m.weibo.cn/detail/5209323930124813">橄徘</a> <a href="https://m.weibo.cn/detail/5209323854889918">柠</a> <a href="https://m.weibo.cn/detail/5209323845717097">犀焚</a> <a href="https://m.weibo.cn/detail/5209323844142059">邑坤</a> <a href="https://m.weibo.cn/detail/5209323833393590">矫缅</a> <a href="https://m.weibo.cn/detail/5209323799577323">缰弥</a> <a href="https://m.weibo.cn/detail/5209323779394767">莱溶</a> <a href="https://m.weibo.cn/detail/5209323774410757">褂峦</a> <a href="https://m.weibo.cn/detail/5209323769957332">侥敷</a> <a href="https://m.weibo.cn/detail/5209323758160376">棺哼</a> <a href="https://m.weibo.cn/detail/5209323724081526">冯儒</a> <a href="https://m.weibo.cn/detail/5209323718315086">琉萎</a> <a href="https://m.weibo.cn/detail/5209323699701839">镐</a> <a href="https://m.weibo.cn/detail/5209323681614576">哆阐</a> <a href="https://m.weibo.cn/detail/5209323682137270">蓖</a> <a href="https://m.weibo.cn/detail/5209323672440169">庐鼎</a> <a href="https://m.weibo.cn/detail/5209323670079839">凰</a> <a href="https://m.weibo.cn/detail/5209323652778531">镣楔</a> <a href="https://m.weibo.cn/detail/5209323636524766">唠</a> <a href="https://m.weibo.cn/detail/5209323628134466">兢赫</a> <a href="https://m.weibo.cn/detail/5209323607164511">炬</a> <a href="https://m.weibo.cn/detail/5209323605067710">畴镊</a> <a href="https://m.weibo.cn/detail/5209323577802925">伊舀</a> <a href="https://m.weibo.cn/detail/5209323564699313">坎礁</a> <a href="https://m.weibo.cn/detail/5209323563387054">晦盔</a> <a href="https://m.weibo.cn/detail/5209323531403593">霍凹</a> <a href="https://m.weibo.cn/detail/5209323531665531">祠赡</a> <a href="https://m.weibo.cn/detail/5209323489724742">衙趾</a> <a href="https://m.weibo.cn/detail/5209323483433805">枢芍</a> <a href="https://m.weibo.cn/detail/5209323485266267">绷谚</a> <a href="https://m.weibo.cn/detail/5209323481334505">霹彤</a> <a href="https://m.weibo.cn/detail/5209323475042489">衷</a> <a href="https://m.weibo.cn/detail/5209323468230420">撬</a> <a href="https://m.weibo.cn/detail/5209323451975064">茵</a> <a href="https://m.weibo.cn/detail/5209323447780891">溃</a> <a href="https://m.weibo.cn/detail/5209323412390892">肖</a> <a href="https://m.weibo.cn/detail/5209323408984976">崩</a> <a href="https://m.weibo.cn/detail/5209323408196993">鲸</a> <a href="https://m.weibo.cn/detail/5209323392207890">捌</a> <a href="https://m.weibo.cn/detail/5209323357863967">漓</a> <a href="https://m.weibo.cn/detail/5209323338989630">咖</a> <a href="https://m.weibo.cn/detail/5209323334272695">葫</a> <a href="https://m.weibo.cn/detail/5209323321166356">凸</a> <a href="https://m.weibo.cn/detail/5209323300980427">诺</a> <a href="https://m.weibo.cn/detail/5209323292853767">嘲</a> <a href="https://m.weibo.cn/detail/5209323284204094">韭</a> <a href="https://m.weibo.cn/detail/5209323284464361">骚</a> <a href="https://m.weibo.cn/detail/5209323279485235">肛</a> <a href="https://m.weibo.cn/detail/5209323267164336">衅</a> <a href="https://m.weibo.cn/detail/5209323255105171">瞭</a> <a href="https://m.weibo.cn/detail/5209323255104609">桩</a> <a href="https://m.weibo.cn/detail/5209323250647505">熬捺</a> <a href="https://m.weibo.cn/detail/5209323246192814">瓮</a> <a href="https://m.weibo.cn/detail/5209323229676251">颊徙</a> <a href="https://m.weibo.cn/detail/5209323221287194">吁</a> <a href="https://m.weibo.cn/detail/5209323216831581">掂椎</a> <a href="https://m.weibo.cn/detail/5209323203987400">瘫</a> <a href="https://m.weibo.cn/detail/5209323200053468">钮缆</a> <a href="https://m.weibo.cn/detail/5209323196122578">楣</a> <a href="https://m.weibo.cn/detail/5209323178823727">汹滓</a> <a href="https://m.weibo.cn/detail/5209323174625906">眷奕</a> <a href="https://m.weibo.cn/detail/5209323170433579">糜贰</a> <a href="https://m.weibo.cn/detail/5209323158373073">哩缤</a> <a href="https://m.weibo.cn/detail/5209323143692315">胰洛</a> <a href="https://m.weibo.cn/detail/5209323141598041">寥蝌</a> <a href="https://m.weibo.cn/detail/5209323115907565">拱俺</a> <a href="https://m.weibo.cn/detail/5209323097555818">竣藐</a> <a href="https://m.weibo.cn/detail/5209323085234650">芯酗</a> <a href="https://m.weibo.cn/detail/5209323065838165">蛀凸</a> <a href="https://m.weibo.cn/detail/5209323065575172">噪</a> <a href="https://m.weibo.cn/detail/5209323044078836">骇呛</a> <a href="https://m.weibo.cn/detail/5209323022322796">雏</a> <a href="https://m.weibo.cn/detail/5209323019701112">歧呵</a> <a href="https://m.weibo.cn/detail/5209323019437258">堰</a> <a href="https://m.weibo.cn/detail/5209323015769964">歹荞</a> <a href="https://m.weibo.cn/detail/5209323007640869">涡</a> <a href="https://m.weibo.cn/detail/5209323007639780">橄骇</a> <a href="https://m.weibo.cn/detail/5209323007377747">栅</a> <a href="https://m.weibo.cn/detail/5209322995057862">谤凌</a> <a href="https://m.weibo.cn/detail/5209322990865175">邑镣</a> <a href="https://m.weibo.cn/detail/5209322969107837">矫啃</a> <a href="https://m.weibo.cn/detail/5209322950757189">窿吏</a> <a href="https://m.weibo.cn/detail/5209322944466924">莽尉</a> <a href="https://m.weibo.cn/detail/5209322935550795">寝灸</a> <a href="https://m.weibo.cn/detail/5209322935812522">侠腋</a> <a href="https://m.weibo.cn/detail/5209322931882941">椎卑</a> <a href="https://m.weibo.cn/detail/5209322931357545">尔蜀</a> <a href="https://m.weibo.cn/detail/5209322914317342">麸虐</a> <a href="https://m.weibo.cn/detail/5209322910909482">镊</a> <a href="https://m.weibo.cn/detail/5209322904619820">勋</a> <a href="https://m.weibo.cn/detail/5209322898326387">靶</a> <a href="https://m.weibo.cn/detail/5209322860316258">吝</a> <a href="https://m.weibo.cn/detail/5209322855597363">逸</a> <a href="https://m.weibo.cn/detail/5209322854286549">赡</a> <a href="https://m.weibo.cn/detail/5209322854548336">哮</a> <a href="https://m.weibo.cn/detail/5209322805527125">蔚</a> <a href="https://m.weibo.cn/detail/5209322791375449">氓</a> <a href="https://m.weibo.cn/detail/5209322779051696">晾</a> <a href="https://m.weibo.cn/detail/5209322774595147">伦</a> <a href="https://m.weibo.cn/detail/5209322767780941">菱</a> <a href="https://m.weibo.cn/detail/5209322755457048">澜</a> <a href="https://m.weibo.cn/detail/5209322750738768">衍</a> <a href="https://m.weibo.cn/detail/5209322745234524">诬</a> <a href="https://m.weibo.cn/detail/5209322732914408">魁</a> <a href="https://m.weibo.cn/detail/5209322726621244">枉</a> <a href="https://m.weibo.cn/detail/5209322705653392">绰</a> <a href="https://m.weibo.cn/detail/5209322703293035">譬</a> <a href="https://m.weibo.cn/detail/5209322697262988">凄</a> <a href="https://m.weibo.cn/detail/5209322687563217">撮髓</a> <a href="https://m.weibo.cn/detail/5209322680224229">荚</a> <a href="https://m.weibo.cn/detail/5209322678387887">渺芯</a> <a href="https://m.weibo.cn/detail/5209322658991096">卤</a> <a href="https://m.weibo.cn/detail/5209322658991336">崔苔</a> <a href="https://m.weibo.cn/detail/5209322659253389">膳</a> <a href="https://m.weibo.cn/detail/5209322650602160">袁玷</a> <a href="https://m.weibo.cn/detail/5209322636183633">誊</a> <a href="https://m.weibo.cn/detail/5209322633824637">咆恃</a> <a href="https://m.weibo.cn/detail/5209322624911129">搔蝗</a> <a href="https://m.weibo.cn/detail/5209322611017963">夯赁</a> <a href="https://m.weibo.cn/detail/5209322606822415">窍檬</a> <a href="https://m.weibo.cn/detail/5209322604203989">嘶厢</a> <a href="https://m.weibo.cn/detail/5209322583755695">轴卢</a> <a href="https://m.weibo.cn/detail/5209322581920672">缕淤</a> <a href="https://m.weibo.cn/detail/5209322577728042">囱吻</a> <a href="https://m.weibo.cn/detail/5209322579035260">兜嵌</a> <a href="https://m.weibo.cn/detail/5209322566715209">磷咙</a> <a href="https://m.weibo.cn/detail/5209322560948319">桅</a> <a href="https://m.weibo.cn/detail/5209322527133820">赘荠</a> <a href="https://m.weibo.cn/detail/5209322527132854">忿</a> <a href="https://m.weibo.cn/detail/5209322493579374">硫耘</a> <a href="https://m.weibo.cn/detail/5209322485190436">夷</a> <a href="https://m.weibo.cn/detail/5209322486236328">掐凌</a> <a href="https://m.weibo.cn/detail/5209322469724844">瘤</a> <a href="https://m.weibo.cn/detail/5209322466313990">钧谴</a> <a href="https://m.weibo.cn/detail/5209322457402949">楞</a> <a href="https://m.weibo.cn/detail/5209322453469230">沦臀</a> <a href="https://m.weibo.cn/detail/5209322451896169">阐崔</a> <a href="https://m.weibo.cn/detail/5209322419915942">鳄旭</a> <a href="https://m.weibo.cn/detail/5209322411789271">蚓琢</a> <a href="https://m.weibo.cn/detail/5209322409690784">辕沦</a> <a href="https://m.weibo.cn/detail/5209322370106958">怯焙</a> <a href="https://m.weibo.cn/detail/5209322365129277">拷疚</a> <a href="https://m.weibo.cn/detail/5209322348871906">痪腻</a> <a href="https://m.weibo.cn/detail/5209322335767031">芥钙</a> <a href="https://m.weibo.cn/detail/5209322329998935">蛉寥</a> <a href="https://m.weibo.cn/detail/5209322289631972">螟</a> <a href="https://m.weibo.cn/detail/5209322290151912">蚤</a>