源服务器未找到目标资源的当前表示形式,或者不愿意透露存在该表示形式。关于部署到雄猫
我使用Spring和Eclipse IDE构建了一个应用程序。当我从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时失败了?