Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/mvc"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans
  6. http://www.springframework.org/schema/beans/spring-beans.xsd
  7. http://www.springframework.org/schema/context
  8. http://www.springframework.org/schema/context/spring-context-4.0.xsd
  9. http://springframework.org/schema/mvc
  10. http://springframework.org/schema/mvc/spring-mvc-4.0.xsd">
  11. <mvc:annotation-driven />
  12. <context:component-scan base-package="com.packt.webstore" />
  13. <bean class="org.springframework.web.servlet.viev.InternalResourceViewResolver">
  14. <property name="prefix" value="/WEB-INF/jsp/"
  15. <property name="suffix" value=".jsp" />
  16. </bean>
  17. </beans>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement