We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
首先感谢您使用 DynamicTp,如果使用过程中有任何问题,请按照下述模板反馈问题,请使用 Markdown 语法。
文字描述、截图、粘代码方式
tomcat web server adapter not started for springboot version under 2.x
tomcat adpter加载过程:
org.dromara.dynamictp.starter.adapter.webserver.autocconfigure.WebServerTpAutoConfiguration -> org.dromara.dynamictp.starter.adapter.webserver.autocconfigure.condition.ConditionalOnTomcatWebServer -> org.dromara.dynamictp.starter.adapter.webserver.autocconfigure.condition.OnTomcatWebServerCondition -> @ConditionalOnBean( name = {"tomcatServletWebServerFactory"} )
问题原因: tomcatServletWebServerFactory这个类在springboot2.0之后才引入 springboot1.0之前使用的是TomcatEmbeddedServletContainerFactory
tomcatServletWebServerFactory
TomcatEmbeddedServletContainerFactory
解决方案: 注解上添加sprinboot1.x的tomcat支持
The text was updated successfully, but these errors were encountered:
可以提个pr
Sorry, something went wrong.
No branches or pull requests
首先感谢您使用 DynamicTp,如果使用过程中有任何问题,请按照下述模板反馈问题,请使用 Markdown 语法。
版本信息
问题描述
文字描述、截图、粘代码方式
tomcat web server adapter not started for springboot version under 2.x
复现步骤
其他信息
问题原因
tomcat adpter加载过程:
问题原因:
tomcatServletWebServerFactory
这个类在springboot2.0之后才引入springboot1.0之前使用的是
TomcatEmbeddedServletContainerFactory
解决方案:
注解上添加sprinboot1.x的tomcat支持
The text was updated successfully, but these errors were encountered: