Я пытаюсь использовать Tiles2 для шаблонов всех веб-страниц в моем новом приложении MVC Spring. Я создал страницу входа в систему под названием Login.jsp, которая использует j_spring_security_check для действия формы post.Tiles2 с пружиной безопасности, сообщение об ошибке входа не отображается
Я успешно могу войти в систему и проверить подлинность с помощью AuthenticationProvider. Тем не менее, я застрял в том, как отображать сообщение об ошибке в случае неудачной попытки входа в систему. Я создал контроллер, который проверит, есть ли параметр запроса с ошибкой. Контроллер входа никогда не получает вызов обычной попытки входа в систему или неудачной попытки входа в систему. Класс контроллера находится в контексте: компонент-сканирование в ApplicationContext.xml.
Я попробовал добавить точки останова на контроллере, но его никогда не вызывали. Конечная точка, которую я использую для доступа к странице входа.
Мне кажется, что контроллер не используется, и отображается login.jsp, как я могу убедиться, что он проходит через контроллер?
Не могли бы вы рассказать мне, что мне здесь не хватает, я рассмотрел множество примеров конфигураций и ответов здесь, я не могу понять, что я делаю неправильно.
Spring Версия: 3.1.0 Плитки Версия: 2.2.2
Контроллер:
@Controller
public class LoginController {
@RequestMapping(value = "/login.company", method = RequestMethod.GET)
public ModelAndView login(@RequestParam(value = "error", required = false) String error,
@RequestParam(value = "logout", required = false) String logout) {
ModelAndView model = new ModelAndView();
if(error !=null && !StringUtils.isBlank(error)){
model.addObject("error", "Incorrect username or password.");
}else if(logout !=null && !StringUtils.isBlank(logout)){
model.addObject("msg", "You have been logged out.");
}
model.setViewName("login");
return model;
}
}
Tiles.xml
<tiles-definitions>
<definition name="mainLayout" template="/WEB-INF/tiles/mainLayout.jsp">
<put-attribute name="includes" value="/WEB-INF/tiles/includes.jsp"/>
<put-attribute name="content" value="/WEB-INF/tiles/blank.jsp"/>
<put-attribute name="footer" value="/WEB-INF/tiles/footer.jsp"/>
</definition>
<definition name="*" extends="mainLayout">
<put-attribute name="content" value="/WEB-INF/views/{1}.jsp"/>
</definition>
</tiles-definitions>
security.xml
<beans:bean id="loginService" class="com.LoginService"/>
<authentication-manager>
<authentication-provider ref="loginService">
</authentication-provider>
</authentication-manager>
<http use-expressions="true">
<intercept-url pattern="/resources/**" access="permitAll"/>
<intercept-url pattern="/login.company" access="permitAll"/>
<intercept-url pattern="/**" access="hasRole('ROLE_USER')" />
<form-login login-page="/login.company" authentication-failure-url="/login.company?error=1" />
<logout logout-success-url="/login.company?logout" />
</http>
applicationContext.xml
<bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.tiles2.TilesView" />
</bean>
<bean id="tilesConfigurer" class="org.springframework.web.servlet.view.tiles2.TilesConfigurer"/>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app metadata-complete="false" version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/applicationContext.xml
/WEB-INF/spring/security.xml
</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<servlet>
<servlet-name>mvc-dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/applicationContext.xml
</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>mvc-dispatcher</servlet-name>
<url-pattern>*.company</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>mvc-dispatcher</servlet-name>
<url-pattern>/index.html</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
</web-app>