Sha256: 01bb17d52938ea7940811f05995f3481a414951548e64e4f3ad0d742c6c5c461

Contents?: true

Size: 993 Bytes

Versions: 2

Compression:

Stored size: 993 Bytes

Contents

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:mvc="http://www.springframework.org/schema/mvc" 
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
			   http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
			   http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
  
  <mvc:annotation-driven />
  <context:component-scan base-package="com._5values.dummy" />

  <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="prefix">
      <value>/WEB-INF/pages/</value>
    </property>
    <property name="suffix">
      <value>.jsp</value>
    </property>
  </bean>
  
</beans>

Version data entries

2 entries across 1 versions & 1 rubygems

Version Path
reigns-1.0.1-java reference_apps/valid_app/src/main/webapp/WEB-INF/mvc-dispatcher-servlet.xml
reigns-1.0.1-java reference_apps/valid_app/target/valid_app/WEB-INF/mvc-dispatcher-servlet.xml