さまざまな URL パターンを処理する複数のサーブレットをサポートする Spring 3(.1.1) MVC を使用する小さなテスト アプリを作成しようとしています。
最初のサーブレットにオートワイヤーされる別の Bean を作成したので、最初に DAO を app-servlet.xml ファイルに入れました。これは、そのサーブレットに限定したかったからです。Bu†私がそれをしたとき、Beanを自動配線できないというエラーが発生しました。dhe ステートメントを root-context.xml ファイルに移動すると、機能しました。
web.xml に 2 つの DispatcherServlets があるため、それぞれの url-pattern を「/」に設定しました。app-servlet.xml ファイルにステートメントがまだ残っている間に、2 番目のサーブレットの URL パターンを「/add」に変更し (「/fred」も試しました)、突然すべてが期待どおりに機能するようになりました (2 番目のサーブレットは /addperson を使用して呼び出されました) - サーブレットの RequestMapping で指定)。
DAO を root-context.xml に入れると、url-pattern を「/」に戻すことができました。
したがって、このセットアップをテストする際に、次の web.xml がありました。
<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/root-context.xml</param-value>
</context-param>
<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- Processes application requests -->
<servlet>
<servlet-name>app</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/app-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet>
<servlet-name>person</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/person-servlet.xml</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>app</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>person</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
app-servlet.xml:
<!-- Enables the Spring MVC @Controller programming model -->
<annotation-driven />
<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
<resources mapping="/resources/**" location="/resources/" />
<!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>
<context:annotation-config />
<context:component-scan base-package="com.hh.builditup.controller" />
そして person-servlet.xml:
<!-- Enables the Spring MVC @Controller programming model -->
<annotation-driven />
<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
<resources mapping="/resources/**" location="/resources/" />
<!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>
<context:component-scan base-package="com.hh.builditup.controller" />
root-context.xml:
<!-- Root Context: defines shared resources visible to all other web components -->
<context:annotation-config />
<context:component-scan base-package="com.hh.builditup.dao" />
「アプリ」サーブレットは次のようになります。 @Controller public class HomeController {
private static final Logger logger = LoggerFactory.getLogger(HomeController.class);
@Autowired
private MyDAO myDAO;
/**
* Simply selects the home view to render by returning its name.
*/
@RequestMapping(value = "/", method = RequestMethod.GET)
public String home(Locale locale, Model model) {
そして最後に「人」サーブレット:
@Controller
public class PersonController {
private static final Logger logger = LoggerFactory.getLogger(PersonController.class);
/**
* Simply selects the home view to render by returning its name.
*/
@RequestMapping(value = "/addperson", method = RequestMethod.GET)
DAO Bean は次のようになります。
@Component("myDAO")
public class MyDAO {
public MyDAO()
{
System.out.println("created MyDAO object");
}
}
これらの結果を生成する url-pattern と RequestMapping の相互作用を誰かが説明できますか? Bean が共通ではなく 1 つのサーブレットに制限されている場合、なぜ url-pattern を変更する必要があるのですか? また、url-pattern への変更が、サーブレットのテストに使用される URL に影響しないのはなぜですか?
ご指導いただきありがとうございます。