当前位置: 首页 > 知识库问答 >
问题:

源服务器没有找到目标资源的当前表示形式,或者不愿意透露存在此表示形式。关于部署到tomcat

汤飞翮
2023-03-14
The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.
<!-- 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上失败了吗?

共有1个答案

西门伟
2023-03-14

这个问题我纠结了很多次。

我目前使用的解决方案是,webapp(或保存视图的文件夹,如jsp)是否处于部署程序集之下。

为此右键单击项目>构建路径>配置构建路径>部署程序集>添加(右手边)>文件夹>(添加您的JSP文件夹。默认情况下是src/main/webapp)

<a href=" <spring:url value="/mappedpath" /> ">TakeMeToTheController</a>
 类似资料: