Несколько гиперссылок на одной странице - PullRequest
1 голос
/ 06 апреля 2019

Я пытался установить две гиперссылки на одной странице.По некоторым причинам, независимо от выбора, сделанного нажатием на гиперссылки, он всегда открывает HTML-страницу, связанную с первым вариантом.Я что-то пропустил?

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="https://www.thymeleaf.org" xmlns:sec="https://www.thymeleaf.org/thymeleaf-extras-springsecurity3">

<head>
  <title>Spring Security Example</title>
</head>

<body>
  <h1>Welcome</h1>
  <p>Click <a th:href="@{/login}"> here </a>for login. </p>
  <p>Click <a th:href="@{/registration}"> here </a>to register as a new user.</p>
</body>

</html>

Вот login.html

    <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="https://www.thymeleaf.org"
      xmlns:sec="https://www.thymeleaf.org/thymeleaf-extras-springsecurity3">
    <head>
        <title>Spring Security Example </title>
    </head>
    <body>
        <div th:if="${param.error}">
            Invalid username and password.
        </div>
        <div th:if="${param.logout}">
            You have been logged out.
        </div>
        <form th:action="@{/login}" method="post">
            <div><label> User Name : <input type="text" align="center" name="username"/> </label></div>
            <div><label> Password: <input type="password" align="center" name="password"/> </label></div>
            <div><input type="submit" value="Sign In"/></div>
        </form>
    </body>
    </html>

Ниже приведен регистрационный файл .html

    <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="https://www.thymeleaf.org"
      xmlns:sec="https://www.thymeleaf.org/thymeleaf-extras-springsecurity3">
    <head>
        <title>Spring Security Example </title>
    </head>
    <body>
        <form th:action="@{/registration}" method="post">
         <div><label> Preferred User Name : <input type="text" align="center" name="username"/> </label></div>
            <div><label> Password: <input type="password" align="center" name="pasisword"/> </label></div>
            <div><label> Reentered password: <input type="password" align="center" name="password"/> </label></div>
            <div><label> Address: <input type="text" align="center" name="address"/> </label></div>
            <div><label> Upload Image : <input type="image" align="center" name="photos"/> </label></div>
            <div><input type="submit" value="new user"/></div>
        </form>
    </body>
</html>

MvcConfig.java, как показано ниже.

    public class MvcConfig implements WebMvcConfigurer {

    public void addViewControllers(ViewControllerRegistry registry) {
        registry.addViewController("/home").setViewName("home");
        registry.addViewController("/").setViewName("home");
        registry.addViewController("/hello").setViewName("hello");
        registry.addViewController("/login").setViewName("login");
        registry.addViewController("/registration").setViewName("registration");
    }

}

1 Ответ

0 голосов
/ 06 апреля 2019

Это может помочь.

Разделить строку в href

@{'/' + ${login}}

как это:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="https://www.thymeleaf.org" xmlns:sec="https://www.thymeleaf.org/thymeleaf-extras-springsecurity3">

<head>
  <title>Spring Security Example</title>
</head>

<body>
  <h1>Welcome</h1>
  <p>Click <a th:href="@{'/' + ${login}}"> here </a>for login. </p>
  <p>Click <a th:href="@{'/' + ${registration}}"> here </a>to register as a new user.</p>
</body>

</html>
...