У меня есть простая страница индекса и контроллер.Я просто хочу, чтобы мой контроллер перенаправлял на страницу индекса, если учетные данные пользователя не совпадают.Я использую ModelAndView в качестве моего типа возвращаемого значения в контроллере.
Вот мой код для контроллера:
public class LoginController {
@RequestMapping(value="/login",method = RequestMethod.POST)
public ModelAndView loginResult(HttpServletRequest req,HttpServletResponse res,RedirectAttributes redir,Model model) {
InfoEmployee inf = new InfoEmployee();
InfoManager inf2 = new InfoManager();
String uname=req.getParameter("username");
//Putting the username in the session object
String pwd=req.getParameter("pwd");
String dept = req.getParameter("dept");
String name1 = inf.getName();
String message1 = "Welcome "+name1;
String name2 = inf2.getName();
String message2 = "Welcome "+name2;
model.addAttribute("message", "sorry message");
if(uname.equals(inf.getUsername())&&pwd.equals(inf.getPassword())&&dept.equals(inf.getDept()))
{
req.getSession().setAttribute("uname",inf.getName());
return new ModelAndView("employeeLoginResult", "message", message1);
}
else if(uname.equals(inf2.getUsername())&&pwd.equals(inf2.getPassword())&&dept.equals(inf2.getDept()))
{
req.getSession().setAttribute("uname",inf2.getName());
return new ModelAndView("adminLoginResult", "message", message2);
}
else
{
//ModelAndView modelAndView = new ModelAndView();
//modelAndView.setViewName("redirect:/index.jsp");
//redir.addFlashAttribute("message","Sorry");
//return modelAndView;
//redir.addFlashAttribute(message1, "Sorry");
return new ModelAndView("redirect:/index.jsp","message","Sorry username password error");
//return new ModelAndView("Redirect:/index","message","Sorry, user name or password error");
//return new ModelAndView(new RedirectView("index.jsp"),"message","Sorry, user name or password error");
//return new ModelAndView("RedirectToIndex", "message","Sorry, user name or password error");
}
}
Я попытался использовать флэш-атрибут, но URL-адрес по-прежнему добавляется с переданными атрибутами,И вот моя страница индекса:
<b><span class="heading">LOGIN USER</span></b>
<div class="container">
<form action="login.html" method="Post">
<div class="form_style">
<input type="text" name="username" placeholder="Enter Username"/>
<input type="password" name="pwd" placeholder="Enter password"/>
<select name="dept">
<option>IT</option>
<option>Admin</option>
<option>HR</option>
<option>Marketing</option>
</select>
<input type="Submit" value="submit">
<%
String message=request.getParameter("message");
%>
<%=message %>
<span>${message}</span>
<span>${message1}</span>
</div>
</form>
</div>
Я просто не могу напечатать сообщение, которое я отправил через перенаправление с $ {message} на странице индекса.Каждый метод добавляет URL с сообщением.Я хочу знать, может ли проблема быть решена при использовании другого метода, или если кто-то может сказать мне об использовании RedirectAttributes, как, когда я его использовал, он все равно добавил атрибуты в URL.
Проще говоря, я простохочу показать, что имя пользователя или пароль, введенные пользователем, неверны на моей странице индекса.Если я могу перейти на свою индексную страницу без помощи перенаправления, то это предложение также приветствуется.
Любое предложение или помощь по достоинству оценены.Спасибо за то же самое.
РЕДАКТИРОВАТЬ:
Вот мой диспетчерский сервлет
<?xml version="1.0" encoding="UTF-8"?>
<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:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<mvc:annotation-driven></mvc:annotation-driven>
<!-- <mvc:annotation-driven ignore-default-model-on-redirect="true" /> -->
<!--<context:annotation-config></context:annotation-config> -->
<context:component-scan base-package="com.controller"></context:component-scan>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/"></property>
<property name="suffix" value=".jsp"></property>
</bean>
<mvc:resources mapping="/resources/**" location="/resources/" cache-period="31556926"/>
<!-- <mvc:resources location="webapp/WEB-INF/jsp/stylesheets/main.css" mapping="/stylesheets/**"></mvc:resources> -->
</beans>
В каталоге ::