java sping mvc404 问题

dispatcher-servlet.xml 文件配置

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

<!--component-scan就是告诉Servlet去哪里找到相应的Controller-->
<context:component-scan base-package="controllers"/>

<!--视图解析器-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <!-- 视图的路径 -->
    <property name="prefix" value="/WEB-INF/View/Hello/"/>
    <!-- 视图名称后缀  -->
    <property name="suffix" value=".jsp"/>
</bean>

</beans>

白衣染霜花
浏览 512回答 4
4回答

largeQ

是不是少了项目名啊

GCT1015

需要项目名吧.应该是localhost:9999/项目名/Hello/index。【而且注意一下DispatcherServlet那里的url-pattern配置】

慕勒3428872

<property name="prefix" value="/WEB-INF/View/Hello/"/> web-inf 不要
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java