我有一个旧的Spring MVC应用程序,需要将Spring boot(2.1.5)与旧的web.xml一起使用。为什么?在web.xml中定义的身份验证规则在新的应用程序类中不起作用,因此,如果可能的话,我希望在web.xml中发布身份验证规则,但似乎Spring boot不会读取web.xml。>
web.xml位于webapp/WEB-INF
文件夹中,并且是3.0 servlet版本。
我是否需要在Spring boot config类中引用web.xml? 这是我今天班级的定义:
@SpringBootApplication(exclude = { DataSourceAutoConfiguration.class} )
@ComponentScan
@PropertySource("classpath:spring-boot.properties")
public class AppConfig extends SpringBootServletInitializer implements WebApplicationInitializer {