spring boot starter security 不在日志中生成默认密码

Posted

技术标签:

【中文标题】spring boot starter security 不在日志中生成默认密码【英文标题】:spring boot starter security not generating default password in logs 【发布时间】:2021-02-16 21:04:28 【问题描述】:

运行spring boot应用后,日志中没有生成默认密码。 请找到以下日志:-

enter image description here

    POM.XML

    org.springframework.boot 弹簧启动器
     <dependency>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-test</artifactId>
         <scope>test</scope>
         <exclusions>
             <exclusion>
                 <groupId>org.junit.vintage</groupId>
                 <artifactId>junit-vintage-engine</artifactId>
             </exclusion>
         </exclusions>
     </dependency>
    
     <dependency>
         <groupId>org.hibernate</groupId>
         <artifactId>hibernate-core</artifactId>
     </dependency>
    
     <dependency>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-data-jpa</artifactId>
     </dependency>
    
     <dependency>
         <groupId>org.springframework</groupId>
         <artifactId>spring-web</artifactId>
     </dependency>
    
     <dependency>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-web</artifactId>
     </dependency>
    
     <dependency>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-tomcat</artifactId>
     </dependency>
     <dependency>
         <groupId>io.jsonwebtoken</groupId>
         <artifactId>jjwt</artifactId>
         <version>0.9.0</version>
     </dependency>
    
     <dependency>
         <groupId>mysql</groupId>
         <artifactId>mysql-connector-java</artifactId>
         <version>5.1.34</version>
     </dependency>
    
     <dependency>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-security</artifactId>
     </dependency>
    
     <dependency>
         <groupId>io.jsonwebtoken</groupId>
         <artifactId>jjwt</artifactId>
         <version>0.2</version>
     </dependency>
    

以上详细信息适用于添加到 pom XML 的依赖项。有人知道为什么它没有在日志中生成默认密码吗?

【问题讨论】:

为了帮助调试,在IDE和命令行中运行时得到相同的输出吗? 到目前为止,我只从 ide 运行它。 也尝试从命令行运行它。我还建议事先运行mvn clean 不,它不起作用 它起作用了,在删除了与 Spring Security 相关的 UserDetails 、 UserDetailsS​​ervice 等其他导入之后。 【参考方案1】:

所以,上面的查询现在已经解决了。 基本上,我在我的项目中使用了以下弹簧安全功能,它不允许生成默认密码:-

    UserDetailsS​​ervice 用户名密码身份验证过滤器

删除这些导入和与这些相关的功能后,现在会生成默认密码。 enter image description here

【讨论】:

以上是关于spring boot starter security 不在日志中生成默认密码的主要内容,如果未能解决你的问题,请参考以下文章

将 spring-boot-starter-security 添加到 Spring Boot 应用程序会导致错误 'entityManagerFactory' 或 'persistenceUnitNa

grails 3 spring security boot starter登录页面定制

spring boot starter security 不在日志中生成默认密码

如何为 Webflux、Spring-Security、okta-spring-boot-starter 和 Okta-React 正确使用 CORS?

从 Spring Boot Starter 1.3.5.RELEASE 升级到 1.5.2 RELEASE 时 Spring Security 中的访问被拒绝错误

在 Tomcat 上使用 Spring Boot 进行身份验证