当前位置: 首页 > 面试题库 >

原始服务器找不到目标资源的当前表示,或者不愿意透露该资源的存在。在部署到tomcat

邹嘉石
2023-03-14
问题内容

我已经使用带有Eclipse IDE的Spring构建了一个应用程序。当我从Eclipse IDE启动项目时,一切都很好,但是当我将maven项目打包为war文件并部署到单独的tomcat时,我遇到了这个问题

The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.

这是我的xml文件中的配置代码段

<!-- View Resolver -->
    <beans:bean
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <beans:property name="prefix" value="/WEB-INF/pages/" />
        <beans:property name="suffix" value=".jsp" />
    </beans:bean>

我正在尝试访问此控制器

@RequestMapping(value = {"/welcome", "/"})
    public String defaultPage() {
            return "Web Service data successfuly consumed";


    }

有人知道为什么在部署到tomcat时会失败吗?


问题答案:

如果你正在开发Spring Boot应用程序,请在主文件中添加“ SpringBootServletInitializer”,如以下代码所示。因为如果没有SpringBootServletInitializer,Tomcat会将其视为普通应用程序,则不会将其视为Spring引导应用程序。

@SpringBootApplication
public class DemoApplication extends *SpringBootServletInitializer*{

    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
         return application.sources(DemoApplication .class);
    }

    public static void main(String[] args) {
         SpringApplication.run(DemoApplication .class, args);
    }
}


 类似资料: