「Spring MVC」設定ファイルapplicationContext.xmlのサンプル

書式
1.mvc:annotation-driven アノテーションを有効にする
2.InternalResourceViewResolver
ビュー(jsp)のパスと拡張子を定義する
3.component-scan パッケージ指定
使用例

<!-- MVC定義ファイル -->
<beans xmlns="http://www.springframework.org/schema/beans"
      xmlns:beans="http://www.springframework.org/schema/beans"
      xmlns:mvc="http://www.springframework.org/schema/mvc"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:aop="http://www.springframework.org/schema/aop"
      xmlns:context="http://www.springframework.org/schema/context"
      xmlns:jee="http://www.springframework.org/schema/jee"
      xmlns:tx="http://www.springframework.org/schema/tx"
      xsi:schemaLocation="
                              http://www.springframework.org/schema/beans   http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
                              http://www.springframework.org/schema/mvc     http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd
                              http://www.springframework.org/schema/aop     http://www.springframework.org/schema/aop/spring-aop-4.1.xsd
                              http://www.springframework.org/schema/beans   http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
                              http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd
                              http://www.springframework.org/schema/jee     http://www.springframework.org/schema/jee/spring-jee-4.1.xsd
                              http://www.springframework.org/schema/tx      http://www.springframework.org/schema/tx/spring-tx-4.1.xsd
                              http://www.springframework.org/schema/mvc     http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd">
    
    <-- 1.アノテーション有効 -->
    <mvc:annotation-driven />
      
      <-- 2.component-scanの定義 -->
    <context:component-scan base-package="com.arkgame.study.cft" />

    <-- 3.ビューの定義 -->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/jsp/" />
        <property name="suffix" value=".jsp" />
            <property name="order" value="2"/>
    </bean>
      
     <-- 4.@Autowired有効設定 -->
       <context:annotation-config/>
</beans>

 

SpringMVC

Posted by arkgame