初めての Spring 3.0.5 MVC アプリを作成していますが、コントローラーのマッピングが期待どおりに動作しない理由について混乱しています。
ユーザーが自分の名前とパスワードを入力してログインしようとした後に呼び出される VerifyPasswordController があります。
// Called upon clicking "submit" from /login
@RequestMapping(value = "/verifyPassword", method = RequestMethod.POST)
@ModelAttribute("user")
public String verifyPassword(User user,
BindingResult result) {
String email = user.getEmail();
String nextPage = CHOOSE_OPERATION_PAGE; // success case
if (result.hasErrors()) {
nextPage = LOGIN_PAGE;
} else if (!passwordMatches(email, user.getPassword())) {
nextPage = LOGIN_FAILURE_PAGE;
} else {
// success
}
return nextPage;
}
このメソッドが呼び出されていることをデバッガーで確認できますが、その後、verifyPassword
ページではなくページが表示されchooseOperation
ます。WebLogic のコンソール出力は、私のマッピングが正しいことを示しているようです。
INFO : org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping - Mapped URL path [/chooseOperation] onto handler 'chooseOperationController'
INFO : org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping - Mapped URL path [/chooseOperation.*] onto handler 'chooseOperationController'
INFO : org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping - Mapped URL path [/chooseOperation/] onto handler 'chooseOperationController'
ChooseOperationController は次のとおりです。
@Controller
@SessionAttributes("leaveRequestForm")
public class ChooseOperationController implements PageIfc, AttributeIfc {
@RequestMapping(value = "/chooseOperation")
@ModelAttribute("leaveRequestForm")
public LeaveRequest setUpLeaveRequestForm(
@RequestParam(NAME_ATTRIBUTE) String name) {
LeaveRequest form = populateFormFromDatabase(name);
return form;
}
// helper methods omited
}
アドバイス、特にそのようなマッピングの問題をデバッグするための「一般的な」テクニックを歓迎します。ところで、目的のページに「リダイレクト」しようとしましたが、同じ結果が得られました。
サーブレット-context.xml:
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
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">
<!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->
<!-- 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.engilitycorp.leavetracker" />
<beans:bean id="leaveRequestForm"
class="com.engilitycorp.leavetracker.model.LeaveRequest" />
</beans:beans>
定数:
String LOGIN_FAILURE_PAGE = "loginFailure";
String LOGIN_PAGE = "login";
String CHOOSE_OPERATION_PAGE = "chooseOperation";