Я новичок в Spring Framework.Я пытаюсь сделать логин и выйти из Thymeleaf страниц.Ниже приведены коды входа / выхода из Spring Boot с помощью Thymeleaf.
Во-первых, коды контроллеров входа
@Autowired
private HttpSession userSession;
@Autowired
private UserService userService;
@RequestMapping("/users/login")
public String login(LoginForm loginForm) {
return "users/login";
}
@RequestMapping(value="/users/login", method = RequestMethod.POST)
public String loginPage(@Valid LoginForm loginForm, BindingResult bindingResult) {
if(bindingResult.hasErrors()) {
userSession.setAttribute("blogLogin", false);
System.out.println("Wrong Input!!");
return "users/login";
}
if(!userService.authenticate(loginForm.getUsername(), loginForm.getPassword())) {
userSession.setAttribute("blogLogin", false);
System.out.println("login failed!!");
return "users/login";
}
userSession.setAttribute("blogLogin", true);
System.out.println("Login succesfully.");
return "redirect:/";
}
и коды layout.html с использованием тимилифа.
<header th:fragment="site-header" th:remove="tag">
<header>
<a href="index.html" th:href="@{/}">
<img src="../public/img/site-logo.png" th:src="@{/img/site-logo.png}" />
</a>
<a href="index.html" th:href="@{/}">Home</a>
<a href="users/login.html" th:href="@{/users/login}">Log in</a>
<a href="users/logout.html" th:href="@{/users/logout}">Log out</a>
<a href="users/register.html" th:href="@{/users/register}">Register</a>
<a href="users/index.html" th:href="@{/users}">Users</a>
<a href="posts/index.html" th:href="@{/posts}">Posts</a>
<a href="posts/create.html" th:href="@{/posts/create}">Write Post</a>
<div id="logged-in-info"><span>Hello, <b>(user)</b></span>
<form method="post" th:action="@{/users/logout}">
<input type="submit" value="Log out"/>
</form>
</div>
</header>
</header>
Проблема в том, что я понятия не имею, как сделать так, чтобы ссылки на вход / выход из системы переключали коды с помощью оператора th: if of thymeleaf.Как известно, логин и логин не могут отображаться одновременно.