Spring Security oAuth2 创建案例工程项目

学习完整课程请移步 互联网 Java 全栈工程师

本节视频

  • Spring Security oAuth2-概念总结
  • Spring Security oAuth2-基于内存存储令牌

POM



    4.0.0

    
        org.springframework.boot
        spring-boot-starter-parent
        2.1.3.RELEASE
        
    

    com.funtl
    spring-boot-samples
    1.0.0-SNAPSHOT
    pom
    http://www.funtl.com

    
        
    

    
        1.8
        ${java.version}
        ${java.version}
        UTF-8
        UTF-8
    

    
        
            Apache 2.0
            https://www.apache.org/licenses/LICENSE-2.0.txt
        
    

    
        
            liwemin
            Lusifer Lee
            [email protected]
        
    

    
        
            
                com.funtl
                spring-boot-samples-dependencies
                ${project.version}
                pom
                import
            
        
    

    
        
            default
            
                true
            
            
                0.0.7
            
            
                
                    
                        io.spring.javaformat
                        spring-javaformat-maven-plugin
                        ${spring-javaformat.version}
                    
                    
                        org.apache.maven.plugins
                        maven-surefire-plugin
                        
                            
                                **/*Tests.java
                            
                            
                                **/Abstract*.java
                            
                            
                                file:/dev/./urandom
                                true
                            
                        
                    
                    
                        org.apache.maven.plugins
                        maven-enforcer-plugin
                        
                            
                                enforce-rules
                                
                                    enforce
                                
                                
                                    
                                        
                                            
                                                commons-logging:*:*
                                            
                                            true
                                        
                                    
                                    true
                                
                            
                        
                    
                    
                        org.apache.maven.plugins
                        maven-install-plugin
                        
                            true
                        
                    
                    
                        org.apache.maven.plugins
                        maven-javadoc-plugin
                        
                            true
                        
                        true
                    
                
            
        
    

    
        
            spring-milestone
            Spring Milestone
            https://repo.spring.io/milestone
            
                false
            
        
        
            spring-snapshot
            Spring Snapshot
            https://repo.spring.io/snapshot
            
                true
            
        
    

    
        
            spring-milestone
            Spring Milestone
            https://repo.spring.io/milestone
            
                false
            
        
        
            spring-snapshot
            Spring Snapshot
            https://repo.spring.io/snapshot
            
                true
            
        
    

你可能感兴趣的:(Spring Security oAuth2 创建案例工程项目)