Advertisement
Guest User

spring mvc servlet

a guest
Jul 14th, 2014
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.70 KB | None | 0 0
  1. <beans
  2.     xmlns="http://www.springframework.org/schema/beans"
  3.     xmlns:context="http://www.springframework.org/schema/context"
  4.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5.     xsi:schemaLocation="http://www.springframework.org/schema/beans
  6.     http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  
  7. http://www.springframework.org/schema/context
  8. http://www.springframework.org/schema/context/spring-context-3.0.xsd">
  9.  
  10.     <context:component-scan
  11.         base-package="com.yourpackage.YOURPROJECT" />
  12.     <bean
  13.         class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  14.         <property name="prefix" value="/WEB-INF/pages/"/>  
  15.         <property name="suffix" value=".jsp"/>         
  16.     </bean>
  17. </beans>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement