maven 건설 spring mvc 프로젝트 가 uri 해결 에 접근 하지 못 합 니 다:

3339 단어 mvcWeb
maven 건설 spring mvc 프로젝트 가 uri 해결 에 접근 하지 못 합 니 다:
maven 으로 spring + springmv + hibenate 를 테스트 할 때 springmv 는 이전 로 컬 jar 에서 만 든 웹 프로젝트 테스트 에 따라 설정 되 었 으 나 uri 에 접근 할 수 없습니다. 몇 개의 항목 을 새로 만 들 었 습 니 다. 찾 을 수 없 거나 오류 가 발생 했 습 니 다!
한참 동안 하 다가 마침내 해결 되 었 다!주로 화면 음악 c 의 설정 은 다음 과 같 습 니 다.
기타 설정 은 그대로 입 니 다!
<?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:p="http://www.springframework.org/schema/p"
	xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:aop="http://www.springframework.org/schema/aop"
	xmlns:tool="http://www.springframework.org/schema/tool"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
	                    http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
	                    http://www.springframework.org/schema/context
	                    http://www.springframework.org/schema/context/spring-context-4.0.xsd
	                    http://www.springframework.org/schema/tx
	                    http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
	                    http://www.springframework.org/schema/aop 
	                    http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
	                    http://www.springframework.org/schema/tool	                    
	                    http://www.springframework.org/schema/tool/spring-tool-4.0.xsd
	                 	http://www.springframework.org/schema/mvc
	                    http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">

	<!--   spring mvc    -->
	<context:annotation-config />
	<mvc:default-servlet-handler />

	<!--      -->
	<context:component-scan base-package="com.rui.user/**" />
	<!-- <context:component-scan base-package="**.controller.**" /> -->

	<!--        -->
	<mvc:resources mapping="/front/**" location="/front/" />

	<!--        -->
	<bean id="viewResolver"
		class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<property name="viewClass"
			value="org.springframework.web.servlet.view.JstlView"></property>
		<property name="prefix" value="/"></property> <!--       -->
		<property name="suffix" value=".jsp"></property> <!--       -->
	</bean>

	<!--    Spring MVC      ,        POJO     -->
	<bean
		class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
		<property name="messageConverters">
			<list>
				<bean
					class="org.springframework.http.converter.StringHttpMessageConverter" />
			</list>
		</property>
	</bean>

	<!-- maven           uri -->
	<bean
		class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping">
		<property name="order" value="0" />
	</bean>

</beans>

좋은 웹페이지 즐겨찾기