我是一个基于Spring Boot的应用程序。我添加了以下部分来集成Spring Security:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
还在application.properties中添加了以下行:
security.user.name =管理员
security.user.password = xyzabcd
当我点击时,这可以正常工作:
的http:// localhost
:8080
但是当我在我们的服务器和部署上部署时点击:http:// servername
:8080
我首先得到一个对话框,上面写着&#34; Realm:Spring&#34;。当我输入正确的用户名&amp;密码它没有拿它,而dailog框说&#34; Realm:Realm“&amp;它仍然不接受用户名和&amp;密码。
任何想法可能会发生什么?