有谁知道我该怎么写

<security:authentication property="principal.username"/>


value=""

<form:input path="contactName" cssClass="form-control"
                        placeholder="Enter your Contact Name please." value=""/>


如果我像下面的代码所示那样保留用户名,则用户名将显示在输入字段的下方,而不是(obv)。

 <form:input path="contactName" cssClass="form-control"
                        placeholder="Enter your Contact Name please." value=""/>
            <security:authentication property="principal.username"/>


非常感谢您的帮助!

关于尼科

最佳答案

您使用Thymeleaf吗?

如果是,您可以这样做。

添加pom.xml依赖项:

    <!-- https://mvnrepository.com/artifact/org.thymeleaf.extras/thymeleaf-extras-springsecurity5 -->
    <dependency>
        <groupId>org.thymeleaf.extras</groupId>
        <artifactId>thymeleaf-extras-springsecurity5</artifactId>
        <version>3.0.4.RELEASE</version>
    </dependency>


然后:

<!-->it is necessary<-->
<html xmlns:th="http://www.thymeleaf.org"
      xmlns:sec="http://www.thymeleaf.org/extras/spring-security">

<input placeholder="XXX" th:value="${#authentication.getName()}" />


它可以获取用户名,但是即使您未登录,它也会返回anonymousUser
别担心,这是一个小问题,您可以使用百里香的判断表达。

您可以在以下位置找到更详细的文档:
https://www.thymeleaf.org/doc/articles/springsecurity.html

如果这不能解决您的问题,我会跟进。

07-28 09:28