欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

IDEA的springboot集成jsp找不到页面的解决方式

程序员文章站 2022-05-26 08:42:29
...

1.方式一:IDEA配置

步骤一:点击edit configurations…

IDEA的springboot集成jsp找不到页面的解决方式

步骤2:点击Environment

IDEA的springboot集成jsp找不到页面的解决方式

步骤3:点击working directory 选择第三个,然后点击apply,ok就能访问jsp页面

IDEA的springboot集成jsp找不到页面的解决方式

2.方式二:添加一个配置文件

@Configuration
public class GlobalConfig {
    @Bean
    public WebServerFactoryCustomizer<TomcatServletWebServerFactory> customizer() {
        return (factory) -> {
            factory.addContextCustomizers((context) -> {
                        //模块中webapp相对路径
                        String relativePath = "tt-web/src/main/webapp";
                        File docBaseFile = new File(relativePath);
                        // 路径是否存在
                        if (docBaseFile.exists()) {
                            context.setDocBase(docBaseFile.getAbsolutePath());
                        }
                    }
            );
        };
    }
}
相关标签: idea java