├── .gitattributes ├── .gitignore ├── README.md ├── springboot-actuator-prometheus ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── gf │ │ │ └── SpringbootActuatorPrometheusDemoApplication.java │ └── resources │ │ └── application.yml │ └── test │ └── java │ └── com │ └── gf │ └── SpringbootActuatorPrometheusDemoApplicationTests.java ├── springboot-admin ├── admin-client │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── gf │ │ │ │ └── AdminClientApplication.java │ │ └── resources │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── gf │ │ └── AdminClientApplicationTests.java ├── admin-server │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── gf │ │ │ │ └── AdminServerApplication.java │ │ └── resources │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── gf │ │ └── AdminServerApplicationTests.java ├── sc-admin-client │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── gf │ │ │ │ └── ScAdminClientApplication.java │ │ └── resources │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── gf │ │ └── ScAdminClientApplicationTests.java ├── sc-admin-server │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── gf │ │ │ │ ├── ScAdminServerApplication.java │ │ │ │ └── config │ │ │ │ ├── CustomNotifier.java │ │ │ │ └── SecuritySecureConfig.java │ │ └── resources │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── gf │ │ └── ScAdminServerApplicationTests.java └── sc-eureka-server │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── gf │ │ │ └── ScEurekaServerApplication.java │ └── resources │ │ └── application.yml │ └── test │ └── java │ └── com │ └── gf │ └── ScEurekaServerApplicationTests.java ├── springboot-apollo ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── gf │ │ │ ├── SpringbootApolloApplication.java │ │ │ ├── config │ │ │ └── LoggerConfig.java │ │ │ └── controller │ │ │ └── HelloController.java │ └── resources │ │ └── application.yml │ └── test │ └── java │ └── com │ └── gf │ └── SpringbootApolloApplicationTests.java ├── springboot-cache ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── gf │ │ │ ├── SpringbootCacheApplication.java │ │ │ ├── config │ │ │ ├── CodeGenerator.java │ │ │ └── RedisConfig.java │ │ │ ├── controller │ │ │ └── EmployeeController.java │ │ │ ├── entity │ │ │ └── Employee.java │ │ │ ├── mapper │ │ │ └── EmployeeMapper.java │ │ │ └── service │ │ │ ├── EmployeeService.java │ │ │ └── impl │ │ │ └── EmployeeServiceImpl.java │ └── resources │ │ ├── application.properties │ │ ├── mapper │ │ └── EmployeeMapper.xml │ │ └── templates │ │ └── mapper.xml.vm │ └── test │ └── java │ └── com │ └── gf │ └── SpringbootMybatisApplicationTests.java ├── springboot-config ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── gf │ │ │ ├── SpringbootConfigApplication.java │ │ │ └── entity │ │ │ ├── Cat.java │ │ │ ├── Dog.java │ │ │ └── Person.java │ └── resources │ │ └── application.yml │ └── test │ └── java │ └── com │ └── gf │ └── SpringbootConfigApplicationTests.java ├── springboot-custom-starter ├── hello-spring-boot-starter-autoconfigurer │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── gf │ │ │ └── service │ │ │ ├── HelloProperties.java │ │ │ ├── HelloService.java │ │ │ └── HelloServiceAutoConfiguration.java │ │ └── resources │ │ └── META-INF │ │ └── spring.factories ├── hello-spring-boot-starter-test │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── gf │ │ │ │ ├── HelloSpringBootStarterTestApplication.java │ │ │ │ └── controller │ │ │ │ └── HelloController.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── gf │ │ └── HelloSpringBootStarterTestApplicationTests.java └── hello-spring-boot-starter │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ └── pom.xml ├── springboot-docker ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── gf │ │ │ └── SpringbootDockerApplication.java │ └── resources │ │ ├── application.properties │ │ └── docker │ │ └── Dockerfile │ └── test │ └── java │ └── com │ └── gf │ └── SpringbootDockerApplicationTests.java ├── springboot-elasticsearch ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── gf │ │ │ ├── SpringbootElasticsearchApplication.java │ │ │ ├── entity │ │ │ ├── Article.java │ │ │ └── Book.java │ │ │ └── repository │ │ │ └── BookRepository.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── gf │ └── SpringbootElasticsearchApplicationTests.java ├── springboot-elk ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── gf │ │ │ └── SpringbootElkApplication.java │ └── resources │ │ ├── application.yml │ │ └── logback-spring.xml │ └── test │ └── java │ └── com │ └── gf │ └── SpringbootElkApplicationTests.java ├── springboot-first-application ├── .DS_Store ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── gf │ │ │ ├── SpringbootFirstApplication.java │ │ │ └── controller │ │ │ └── HelloController.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── gf │ └── springbootfirstapplication │ └── SpringbootFirstApplicationTests.java ├── springboot-jsr303 ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── itwolfed │ │ │ ├── SpringbootJsr303Application.java │ │ │ ├── controller │ │ │ └── UserController.java │ │ │ ├── entity │ │ │ └── User.java │ │ │ ├── exception │ │ │ └── GlobalExceptionControllerAdvice.java │ │ │ ├── utils │ │ │ └── Result.java │ │ │ └── valid │ │ │ ├── Groups.java │ │ │ ├── ListValue.java │ │ │ └── ListValueConstraintValidator.java │ └── resources │ │ └── application.yml │ └── test │ └── java │ └── com │ └── itwolfed │ └── SpringbootJsr303ApplicationTests.java ├── springboot-jwt ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── gf │ │ │ ├── SpringbootJwtApplication.java │ │ │ ├── config │ │ │ ├── MyAccessDecisionManager.java │ │ │ ├── MyFilterSecurityInterceptor.java │ │ │ ├── MyInvocationSecurityMetadataSourceService.java │ │ │ └── SecurityConfig.java │ │ │ ├── controller │ │ │ └── AuthController.java │ │ │ ├── entity │ │ │ ├── Role.java │ │ │ ├── RolePermisson.java │ │ │ └── User.java │ │ │ ├── filter │ │ │ └── JwtTokenFilter.java │ │ │ ├── mapper │ │ │ ├── PermissionMapper.java │ │ │ ├── RoleMapper.java │ │ │ └── UserMapper.java │ │ │ ├── service │ │ │ ├── AuthService.java │ │ │ └── impl │ │ │ │ ├── AuthServiceImpl.java │ │ │ │ └── UserDetailsServiceImpl.java │ │ │ └── utils │ │ │ └── JwtTokenUtil.java │ └── resources │ │ └── application.yml │ └── test │ └── java │ └── com │ └── gf │ └── SpringbootJwtApplicationTests.java ├── springboot-logging ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── gf │ │ │ └── SpringbootLoggingApplication.java │ └── resources │ │ ├── application.properties │ │ └── logback-spring.xml │ └── test │ └── java │ └── com │ └── gf │ └── SpringbootLoggingApplicationTests.java ├── springboot-mybatis ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── gf │ │ │ ├── SpringbootMybatisApplication.java │ │ │ ├── config │ │ │ └── CodeGenerator.java │ │ │ ├── controller │ │ │ └── EmployeeController.java │ │ │ ├── entity │ │ │ └── Employee.java │ │ │ ├── mapper │ │ │ └── EmployeeMapper.java │ │ │ └── service │ │ │ ├── EmployeeService.java │ │ │ └── impl │ │ │ └── EmployeeServiceImpl.java │ └── resources │ │ ├── application.properties │ │ ├── mapper │ │ └── EmployeeMapper.xml │ │ └── templates │ │ └── mapper.xml.vm │ └── test │ └── java │ └── com │ └── gf │ └── SpringbootMybatisApplicationTests.java ├── springboot-profile ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── gf │ │ │ ├── SpringbootProfileApplication.java │ │ │ └── controller │ │ │ └── HelloController.java │ └── resources │ │ ├── application-dev.yml │ │ ├── application-prod.yml │ │ ├── application-test.yml │ │ └── application.yml │ └── test │ └── java │ └── com │ └── gf │ └── SpringbootProfileApplicationTests.java ├── springboot-rabbitmq ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── gf │ │ │ ├── SpringbootRabbitmqApplication.java │ │ │ ├── config │ │ │ └── MyAMQPConfig.java │ │ │ └── service │ │ │ └── MQService.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── gf │ └── SpringbootRabbitmqApplicationTests.java ├── springboot-rocketmq-message ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── itwolfed │ │ │ ├── RocketmqMessageNormalApplication.java │ │ │ └── msg │ │ │ ├── Consumer.java │ │ │ ├── DelayConsumer.java │ │ │ ├── OrderConsumer.java │ │ │ ├── Producer.java │ │ │ ├── TxConsumerListener.java │ │ │ └── TxProducerListener.java │ └── resources │ │ └── application.yml │ └── test │ └── java │ └── com │ └── itwolfed │ └── RocketmqMessageNormalApplicationTests.java ├── springboot-seata ├── sbm-account-service │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── gf │ │ │ │ ├── SbmAccountServiceApplication.java │ │ │ │ ├── config │ │ │ │ ├── DataSourceConfig.java │ │ │ │ └── SeataRestTemplateAutoConfiguration.java │ │ │ │ ├── controller │ │ │ │ └── AccountController.java │ │ │ │ ├── entity │ │ │ │ └── Account.java │ │ │ │ ├── filter │ │ │ │ └── SeataFilter.java │ │ │ │ ├── interceptor │ │ │ │ └── SeataRestTemplateInterceptor.java │ │ │ │ ├── mapper │ │ │ │ └── AccountMapper.java │ │ │ │ └── service │ │ │ │ └── AccountService.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── mapper │ │ │ └── AccountMapper.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── gf │ │ └── SbmAccountServiceApplicationTests.java ├── sbm-business-service │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── gf │ │ │ │ ├── SbmBusinessServiceApplication.java │ │ │ │ ├── client │ │ │ │ ├── OrderClient.java │ │ │ │ └── StorageClient.java │ │ │ │ ├── config │ │ │ │ └── SeataRestTemplateAutoConfiguration.java │ │ │ │ ├── controller │ │ │ │ └── BusinessController.java │ │ │ │ ├── filter │ │ │ │ └── SeataFilter.java │ │ │ │ ├── interceptor │ │ │ │ └── SeataRestTemplateInterceptor.java │ │ │ │ └── service │ │ │ │ └── BusinessService.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── gf │ │ └── SbmBusinessServiceApplicationTests.java ├── sbm-order-service │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── gf │ │ │ │ ├── SbmOrderServiceApplication.java │ │ │ │ ├── client │ │ │ │ └── AccountClient.java │ │ │ │ ├── config │ │ │ │ ├── DataSourceConfig.java │ │ │ │ └── SeataRestTemplateAutoConfiguration.java │ │ │ │ ├── controller │ │ │ │ └── OrderController.java │ │ │ │ ├── entity │ │ │ │ └── Order.java │ │ │ │ ├── filter │ │ │ │ └── SeataFilter.java │ │ │ │ ├── interceptor │ │ │ │ └── SeataRestTemplateInterceptor.java │ │ │ │ ├── mapper │ │ │ │ └── OrderMapper.java │ │ │ │ └── service │ │ │ │ └── OrderService.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── mapper │ │ │ └── OrderMapper.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── gf │ │ └── SbmOrderServiceApplicationTests.java └── sbm-storage-service │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── gf │ │ │ ├── SbmStorageServiceApplication.java │ │ │ ├── config │ │ │ ├── DataSourceConfig.java │ │ │ └── SeataRestTemplateAutoConfiguration.java │ │ │ ├── controller │ │ │ └── StorageController.java │ │ │ ├── entity │ │ │ └── Storage.java │ │ │ ├── filter │ │ │ └── SeataFilter.java │ │ │ ├── interceptor │ │ │ └── SeataRestTemplateInterceptor.java │ │ │ ├── mapper │ │ │ └── StorageMapper.java │ │ │ └── service │ │ │ └── StorageService.java │ └── resources │ │ ├── application.properties │ │ └── mapper │ │ └── StorageMapper.xml │ └── test │ └── java │ └── com │ └── gf │ └── SbmStorageServiceApplicationTests.java ├── springboot-security-oauth2-jwt ├── jwt-authserver │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── gf │ │ │ │ ├── JwtAuthserverApplication.java │ │ │ │ └── config │ │ │ │ ├── OAuth2AuthorizationServer.java │ │ │ │ └── WebSecurityConfig.java │ │ └── resources │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── gf │ │ └── JwtAuthserverApplicationTests.java └── jwt-resourceserver │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── gf │ │ │ ├── JwtResourceserverApplication.java │ │ │ ├── api │ │ │ └── HelloController.java │ │ │ └── config │ │ │ └── OAuth2ResourceServer.java │ └── resources │ │ └── application.yml │ └── test │ └── java │ └── com │ └── gf │ └── JwtResourceserverApplicationTests.java ├── springboot-security-oauth2 ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── gf │ │ │ ├── SpringbootSecurityApplication.java │ │ │ ├── config │ │ │ ├── AuthorizationServerConfiguration.java │ │ │ ├── MyAccessDecisionManager.java │ │ │ ├── MyFilterSecurityInterceptor.java │ │ │ ├── MyInvocationSecurityMetadataSourceService.java │ │ │ ├── ResourceServerConfig.java │ │ │ ├── SecurityConfig.java │ │ │ └── WebResponseExceptionTranslateConfig.java │ │ │ ├── controller │ │ │ ├── HelloController.java │ │ │ └── MainController.java │ │ │ ├── entity │ │ │ ├── Role.java │ │ │ ├── RolePermisson.java │ │ │ └── User.java │ │ │ ├── mapper │ │ │ ├── PermissionMapper.java │ │ │ ├── RoleMapper.java │ │ │ └── UserMapper.java │ │ │ └── service │ │ │ └── MyUserDetailsService.java │ └── resources │ │ ├── application.yml │ │ └── templates │ │ └── login.html │ └── test │ └── java │ └── com │ └── gf │ └── SpringbootSecurityApplicationTests.java └── springboot-security ├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── gf │ │ ├── SpringbootSecurityApplication.java │ │ ├── config │ │ ├── MyAccessDecisionManager.java │ │ ├── MyFilterSecurityInterceptor.java │ │ ├── MyInvocationSecurityMetadataSourceService.java │ │ └── SecurityConfig.java │ │ ├── controller │ │ └── MainController.java │ │ ├── entity │ │ ├── Role.java │ │ ├── RolePermisson.java │ │ └── User.java │ │ ├── mapper │ │ ├── PermissionMapper.java │ │ ├── RoleMapper.java │ │ └── UserMapper.java │ │ └── service │ │ └── MyUserDetailsService.java └── resources │ ├── application.yml │ └── templates │ ├── 401.html │ ├── index.html │ ├── login.html │ └── user │ ├── admin.html │ └── common.html └── test └── java └── com └── gf └── SpringbootSecurityApplicationTests.java /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/README.md -------------------------------------------------------------------------------- /springboot-actuator-prometheus/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-actuator-prometheus/pom.xml -------------------------------------------------------------------------------- /springboot-actuator-prometheus/src/main/java/com/gf/SpringbootActuatorPrometheusDemoApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-actuator-prometheus/src/main/java/com/gf/SpringbootActuatorPrometheusDemoApplication.java -------------------------------------------------------------------------------- /springboot-actuator-prometheus/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-actuator-prometheus/src/main/resources/application.yml -------------------------------------------------------------------------------- /springboot-actuator-prometheus/src/test/java/com/gf/SpringbootActuatorPrometheusDemoApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-actuator-prometheus/src/test/java/com/gf/SpringbootActuatorPrometheusDemoApplicationTests.java -------------------------------------------------------------------------------- /springboot-admin/admin-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/admin-client/.gitignore -------------------------------------------------------------------------------- /springboot-admin/admin-client/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/admin-client/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-admin/admin-client/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/admin-client/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-admin/admin-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/admin-client/pom.xml -------------------------------------------------------------------------------- /springboot-admin/admin-client/src/main/java/com/gf/AdminClientApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/admin-client/src/main/java/com/gf/AdminClientApplication.java -------------------------------------------------------------------------------- /springboot-admin/admin-client/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/admin-client/src/main/resources/application.yml -------------------------------------------------------------------------------- /springboot-admin/admin-client/src/test/java/com/gf/AdminClientApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/admin-client/src/test/java/com/gf/AdminClientApplicationTests.java -------------------------------------------------------------------------------- /springboot-admin/admin-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/admin-server/.gitignore -------------------------------------------------------------------------------- /springboot-admin/admin-server/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/admin-server/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-admin/admin-server/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/admin-server/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-admin/admin-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/admin-server/pom.xml -------------------------------------------------------------------------------- /springboot-admin/admin-server/src/main/java/com/gf/AdminServerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/admin-server/src/main/java/com/gf/AdminServerApplication.java -------------------------------------------------------------------------------- /springboot-admin/admin-server/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/admin-server/src/main/resources/application.yml -------------------------------------------------------------------------------- /springboot-admin/admin-server/src/test/java/com/gf/AdminServerApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/admin-server/src/test/java/com/gf/AdminServerApplicationTests.java -------------------------------------------------------------------------------- /springboot-admin/sc-admin-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-admin-client/.gitignore -------------------------------------------------------------------------------- /springboot-admin/sc-admin-client/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-admin-client/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-admin/sc-admin-client/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-admin-client/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-admin/sc-admin-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-admin-client/pom.xml -------------------------------------------------------------------------------- /springboot-admin/sc-admin-client/src/main/java/com/gf/ScAdminClientApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-admin-client/src/main/java/com/gf/ScAdminClientApplication.java -------------------------------------------------------------------------------- /springboot-admin/sc-admin-client/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-admin-client/src/main/resources/application.yml -------------------------------------------------------------------------------- /springboot-admin/sc-admin-client/src/test/java/com/gf/ScAdminClientApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-admin-client/src/test/java/com/gf/ScAdminClientApplicationTests.java -------------------------------------------------------------------------------- /springboot-admin/sc-admin-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-admin-server/.gitignore -------------------------------------------------------------------------------- /springboot-admin/sc-admin-server/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-admin-server/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-admin/sc-admin-server/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-admin-server/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-admin/sc-admin-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-admin-server/pom.xml -------------------------------------------------------------------------------- /springboot-admin/sc-admin-server/src/main/java/com/gf/ScAdminServerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-admin-server/src/main/java/com/gf/ScAdminServerApplication.java -------------------------------------------------------------------------------- /springboot-admin/sc-admin-server/src/main/java/com/gf/config/CustomNotifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-admin-server/src/main/java/com/gf/config/CustomNotifier.java -------------------------------------------------------------------------------- /springboot-admin/sc-admin-server/src/main/java/com/gf/config/SecuritySecureConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-admin-server/src/main/java/com/gf/config/SecuritySecureConfig.java -------------------------------------------------------------------------------- /springboot-admin/sc-admin-server/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-admin-server/src/main/resources/application.yml -------------------------------------------------------------------------------- /springboot-admin/sc-admin-server/src/test/java/com/gf/ScAdminServerApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-admin-server/src/test/java/com/gf/ScAdminServerApplicationTests.java -------------------------------------------------------------------------------- /springboot-admin/sc-eureka-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-eureka-server/.gitignore -------------------------------------------------------------------------------- /springboot-admin/sc-eureka-server/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-eureka-server/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-admin/sc-eureka-server/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-eureka-server/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-admin/sc-eureka-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-eureka-server/pom.xml -------------------------------------------------------------------------------- /springboot-admin/sc-eureka-server/src/main/java/com/gf/ScEurekaServerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-eureka-server/src/main/java/com/gf/ScEurekaServerApplication.java -------------------------------------------------------------------------------- /springboot-admin/sc-eureka-server/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-eureka-server/src/main/resources/application.yml -------------------------------------------------------------------------------- /springboot-admin/sc-eureka-server/src/test/java/com/gf/ScEurekaServerApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-admin/sc-eureka-server/src/test/java/com/gf/ScEurekaServerApplicationTests.java -------------------------------------------------------------------------------- /springboot-apollo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-apollo/.gitignore -------------------------------------------------------------------------------- /springboot-apollo/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-apollo/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /springboot-apollo/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-apollo/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-apollo/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-apollo/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-apollo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-apollo/pom.xml -------------------------------------------------------------------------------- /springboot-apollo/src/main/java/com/gf/SpringbootApolloApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-apollo/src/main/java/com/gf/SpringbootApolloApplication.java -------------------------------------------------------------------------------- /springboot-apollo/src/main/java/com/gf/config/LoggerConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-apollo/src/main/java/com/gf/config/LoggerConfig.java -------------------------------------------------------------------------------- /springboot-apollo/src/main/java/com/gf/controller/HelloController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-apollo/src/main/java/com/gf/controller/HelloController.java -------------------------------------------------------------------------------- /springboot-apollo/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-apollo/src/main/resources/application.yml -------------------------------------------------------------------------------- /springboot-apollo/src/test/java/com/gf/SpringbootApolloApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-apollo/src/test/java/com/gf/SpringbootApolloApplicationTests.java -------------------------------------------------------------------------------- /springboot-cache/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-cache/.gitignore -------------------------------------------------------------------------------- /springboot-cache/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-cache/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-cache/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-cache/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-cache/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-cache/pom.xml -------------------------------------------------------------------------------- /springboot-cache/src/main/java/com/gf/SpringbootCacheApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-cache/src/main/java/com/gf/SpringbootCacheApplication.java -------------------------------------------------------------------------------- /springboot-cache/src/main/java/com/gf/config/CodeGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-cache/src/main/java/com/gf/config/CodeGenerator.java -------------------------------------------------------------------------------- /springboot-cache/src/main/java/com/gf/config/RedisConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-cache/src/main/java/com/gf/config/RedisConfig.java -------------------------------------------------------------------------------- /springboot-cache/src/main/java/com/gf/controller/EmployeeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-cache/src/main/java/com/gf/controller/EmployeeController.java -------------------------------------------------------------------------------- /springboot-cache/src/main/java/com/gf/entity/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-cache/src/main/java/com/gf/entity/Employee.java -------------------------------------------------------------------------------- /springboot-cache/src/main/java/com/gf/mapper/EmployeeMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-cache/src/main/java/com/gf/mapper/EmployeeMapper.java -------------------------------------------------------------------------------- /springboot-cache/src/main/java/com/gf/service/EmployeeService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-cache/src/main/java/com/gf/service/EmployeeService.java -------------------------------------------------------------------------------- /springboot-cache/src/main/java/com/gf/service/impl/EmployeeServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-cache/src/main/java/com/gf/service/impl/EmployeeServiceImpl.java -------------------------------------------------------------------------------- /springboot-cache/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-cache/src/main/resources/application.properties -------------------------------------------------------------------------------- /springboot-cache/src/main/resources/mapper/EmployeeMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-cache/src/main/resources/mapper/EmployeeMapper.xml -------------------------------------------------------------------------------- /springboot-cache/src/main/resources/templates/mapper.xml.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-cache/src/main/resources/templates/mapper.xml.vm -------------------------------------------------------------------------------- /springboot-cache/src/test/java/com/gf/SpringbootMybatisApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-cache/src/test/java/com/gf/SpringbootMybatisApplicationTests.java -------------------------------------------------------------------------------- /springboot-config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-config/.gitignore -------------------------------------------------------------------------------- /springboot-config/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-config/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-config/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-config/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-config/pom.xml -------------------------------------------------------------------------------- /springboot-config/src/main/java/com/gf/SpringbootConfigApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-config/src/main/java/com/gf/SpringbootConfigApplication.java -------------------------------------------------------------------------------- /springboot-config/src/main/java/com/gf/entity/Cat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-config/src/main/java/com/gf/entity/Cat.java -------------------------------------------------------------------------------- /springboot-config/src/main/java/com/gf/entity/Dog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-config/src/main/java/com/gf/entity/Dog.java -------------------------------------------------------------------------------- /springboot-config/src/main/java/com/gf/entity/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-config/src/main/java/com/gf/entity/Person.java -------------------------------------------------------------------------------- /springboot-config/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-config/src/main/resources/application.yml -------------------------------------------------------------------------------- /springboot-config/src/test/java/com/gf/SpringbootConfigApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-config/src/test/java/com/gf/SpringbootConfigApplicationTests.java -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter-autoconfigurer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter-autoconfigurer/.gitignore -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter-autoconfigurer/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter-autoconfigurer/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter-autoconfigurer/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter-autoconfigurer/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter-autoconfigurer/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter-autoconfigurer/mvnw -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter-autoconfigurer/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter-autoconfigurer/mvnw.cmd -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter-autoconfigurer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter-autoconfigurer/pom.xml -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter-autoconfigurer/src/main/java/com/gf/service/HelloProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter-autoconfigurer/src/main/java/com/gf/service/HelloProperties.java -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter-autoconfigurer/src/main/java/com/gf/service/HelloService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter-autoconfigurer/src/main/java/com/gf/service/HelloService.java -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter-autoconfigurer/src/main/java/com/gf/service/HelloServiceAutoConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter-autoconfigurer/src/main/java/com/gf/service/HelloServiceAutoConfiguration.java -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter-autoconfigurer/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter-autoconfigurer/src/main/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter-test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter-test/.gitignore -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter-test/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter-test/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter-test/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter-test/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter-test/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter-test/mvnw -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter-test/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter-test/mvnw.cmd -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter-test/pom.xml -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter-test/src/main/java/com/gf/HelloSpringBootStarterTestApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter-test/src/main/java/com/gf/HelloSpringBootStarterTestApplication.java -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter-test/src/main/java/com/gf/controller/HelloController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter-test/src/main/java/com/gf/controller/HelloController.java -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter-test/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter-test/src/main/resources/application.properties -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter-test/src/test/java/com/gf/HelloSpringBootStarterTestApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter-test/src/test/java/com/gf/HelloSpringBootStarterTestApplicationTests.java -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter/.gitignore -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter/mvnw -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter/mvnw.cmd -------------------------------------------------------------------------------- /springboot-custom-starter/hello-spring-boot-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-custom-starter/hello-spring-boot-starter/pom.xml -------------------------------------------------------------------------------- /springboot-docker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-docker/.gitignore -------------------------------------------------------------------------------- /springboot-docker/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-docker/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-docker/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-docker/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-docker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-docker/pom.xml -------------------------------------------------------------------------------- /springboot-docker/src/main/java/com/gf/SpringbootDockerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-docker/src/main/java/com/gf/SpringbootDockerApplication.java -------------------------------------------------------------------------------- /springboot-docker/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /springboot-docker/src/main/resources/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-docker/src/main/resources/docker/Dockerfile -------------------------------------------------------------------------------- /springboot-docker/src/test/java/com/gf/SpringbootDockerApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-docker/src/test/java/com/gf/SpringbootDockerApplicationTests.java -------------------------------------------------------------------------------- /springboot-elasticsearch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-elasticsearch/.gitignore -------------------------------------------------------------------------------- /springboot-elasticsearch/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-elasticsearch/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-elasticsearch/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-elasticsearch/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-elasticsearch/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-elasticsearch/pom.xml -------------------------------------------------------------------------------- /springboot-elasticsearch/src/main/java/com/gf/SpringbootElasticsearchApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-elasticsearch/src/main/java/com/gf/SpringbootElasticsearchApplication.java -------------------------------------------------------------------------------- /springboot-elasticsearch/src/main/java/com/gf/entity/Article.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-elasticsearch/src/main/java/com/gf/entity/Article.java -------------------------------------------------------------------------------- /springboot-elasticsearch/src/main/java/com/gf/entity/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-elasticsearch/src/main/java/com/gf/entity/Book.java -------------------------------------------------------------------------------- /springboot-elasticsearch/src/main/java/com/gf/repository/BookRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-elasticsearch/src/main/java/com/gf/repository/BookRepository.java -------------------------------------------------------------------------------- /springboot-elasticsearch/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-elasticsearch/src/main/resources/application.properties -------------------------------------------------------------------------------- /springboot-elasticsearch/src/test/java/com/gf/SpringbootElasticsearchApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-elasticsearch/src/test/java/com/gf/SpringbootElasticsearchApplicationTests.java -------------------------------------------------------------------------------- /springboot-elk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-elk/.gitignore -------------------------------------------------------------------------------- /springboot-elk/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-elk/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-elk/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-elk/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-elk/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-elk/pom.xml -------------------------------------------------------------------------------- /springboot-elk/src/main/java/com/gf/SpringbootElkApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-elk/src/main/java/com/gf/SpringbootElkApplication.java -------------------------------------------------------------------------------- /springboot-elk/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 9091 -------------------------------------------------------------------------------- /springboot-elk/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-elk/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /springboot-elk/src/test/java/com/gf/SpringbootElkApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-elk/src/test/java/com/gf/SpringbootElkApplicationTests.java -------------------------------------------------------------------------------- /springboot-first-application/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-first-application/.DS_Store -------------------------------------------------------------------------------- /springboot-first-application/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-first-application/.gitignore -------------------------------------------------------------------------------- /springboot-first-application/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-first-application/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-first-application/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-first-application/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-first-application/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-first-application/pom.xml -------------------------------------------------------------------------------- /springboot-first-application/src/main/java/com/gf/SpringbootFirstApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-first-application/src/main/java/com/gf/SpringbootFirstApplication.java -------------------------------------------------------------------------------- /springboot-first-application/src/main/java/com/gf/controller/HelloController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-first-application/src/main/java/com/gf/controller/HelloController.java -------------------------------------------------------------------------------- /springboot-first-application/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /springboot-first-application/src/test/java/com/gf/springbootfirstapplication/SpringbootFirstApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-first-application/src/test/java/com/gf/springbootfirstapplication/SpringbootFirstApplicationTests.java -------------------------------------------------------------------------------- /springboot-jsr303/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jsr303/.gitignore -------------------------------------------------------------------------------- /springboot-jsr303/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jsr303/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /springboot-jsr303/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jsr303/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-jsr303/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jsr303/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-jsr303/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jsr303/pom.xml -------------------------------------------------------------------------------- /springboot-jsr303/src/main/java/com/itwolfed/SpringbootJsr303Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jsr303/src/main/java/com/itwolfed/SpringbootJsr303Application.java -------------------------------------------------------------------------------- /springboot-jsr303/src/main/java/com/itwolfed/controller/UserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jsr303/src/main/java/com/itwolfed/controller/UserController.java -------------------------------------------------------------------------------- /springboot-jsr303/src/main/java/com/itwolfed/entity/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jsr303/src/main/java/com/itwolfed/entity/User.java -------------------------------------------------------------------------------- /springboot-jsr303/src/main/java/com/itwolfed/exception/GlobalExceptionControllerAdvice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jsr303/src/main/java/com/itwolfed/exception/GlobalExceptionControllerAdvice.java -------------------------------------------------------------------------------- /springboot-jsr303/src/main/java/com/itwolfed/utils/Result.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jsr303/src/main/java/com/itwolfed/utils/Result.java -------------------------------------------------------------------------------- /springboot-jsr303/src/main/java/com/itwolfed/valid/Groups.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jsr303/src/main/java/com/itwolfed/valid/Groups.java -------------------------------------------------------------------------------- /springboot-jsr303/src/main/java/com/itwolfed/valid/ListValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jsr303/src/main/java/com/itwolfed/valid/ListValue.java -------------------------------------------------------------------------------- /springboot-jsr303/src/main/java/com/itwolfed/valid/ListValueConstraintValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jsr303/src/main/java/com/itwolfed/valid/ListValueConstraintValidator.java -------------------------------------------------------------------------------- /springboot-jsr303/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /springboot-jsr303/src/test/java/com/itwolfed/SpringbootJsr303ApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jsr303/src/test/java/com/itwolfed/SpringbootJsr303ApplicationTests.java -------------------------------------------------------------------------------- /springboot-jwt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/.gitignore -------------------------------------------------------------------------------- /springboot-jwt/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /springboot-jwt/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-jwt/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-jwt/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/pom.xml -------------------------------------------------------------------------------- /springboot-jwt/src/main/java/com/gf/SpringbootJwtApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/src/main/java/com/gf/SpringbootJwtApplication.java -------------------------------------------------------------------------------- /springboot-jwt/src/main/java/com/gf/config/MyAccessDecisionManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/src/main/java/com/gf/config/MyAccessDecisionManager.java -------------------------------------------------------------------------------- /springboot-jwt/src/main/java/com/gf/config/MyFilterSecurityInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/src/main/java/com/gf/config/MyFilterSecurityInterceptor.java -------------------------------------------------------------------------------- /springboot-jwt/src/main/java/com/gf/config/MyInvocationSecurityMetadataSourceService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/src/main/java/com/gf/config/MyInvocationSecurityMetadataSourceService.java -------------------------------------------------------------------------------- /springboot-jwt/src/main/java/com/gf/config/SecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/src/main/java/com/gf/config/SecurityConfig.java -------------------------------------------------------------------------------- /springboot-jwt/src/main/java/com/gf/controller/AuthController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/src/main/java/com/gf/controller/AuthController.java -------------------------------------------------------------------------------- /springboot-jwt/src/main/java/com/gf/entity/Role.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/src/main/java/com/gf/entity/Role.java -------------------------------------------------------------------------------- /springboot-jwt/src/main/java/com/gf/entity/RolePermisson.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/src/main/java/com/gf/entity/RolePermisson.java -------------------------------------------------------------------------------- /springboot-jwt/src/main/java/com/gf/entity/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/src/main/java/com/gf/entity/User.java -------------------------------------------------------------------------------- /springboot-jwt/src/main/java/com/gf/filter/JwtTokenFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/src/main/java/com/gf/filter/JwtTokenFilter.java -------------------------------------------------------------------------------- /springboot-jwt/src/main/java/com/gf/mapper/PermissionMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/src/main/java/com/gf/mapper/PermissionMapper.java -------------------------------------------------------------------------------- /springboot-jwt/src/main/java/com/gf/mapper/RoleMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/src/main/java/com/gf/mapper/RoleMapper.java -------------------------------------------------------------------------------- /springboot-jwt/src/main/java/com/gf/mapper/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/src/main/java/com/gf/mapper/UserMapper.java -------------------------------------------------------------------------------- /springboot-jwt/src/main/java/com/gf/service/AuthService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/src/main/java/com/gf/service/AuthService.java -------------------------------------------------------------------------------- /springboot-jwt/src/main/java/com/gf/service/impl/AuthServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/src/main/java/com/gf/service/impl/AuthServiceImpl.java -------------------------------------------------------------------------------- /springboot-jwt/src/main/java/com/gf/service/impl/UserDetailsServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/src/main/java/com/gf/service/impl/UserDetailsServiceImpl.java -------------------------------------------------------------------------------- /springboot-jwt/src/main/java/com/gf/utils/JwtTokenUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/src/main/java/com/gf/utils/JwtTokenUtil.java -------------------------------------------------------------------------------- /springboot-jwt/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/src/main/resources/application.yml -------------------------------------------------------------------------------- /springboot-jwt/src/test/java/com/gf/SpringbootJwtApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-jwt/src/test/java/com/gf/SpringbootJwtApplicationTests.java -------------------------------------------------------------------------------- /springboot-logging/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-logging/.gitignore -------------------------------------------------------------------------------- /springboot-logging/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-logging/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-logging/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-logging/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-logging/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-logging/pom.xml -------------------------------------------------------------------------------- /springboot-logging/src/main/java/com/gf/SpringbootLoggingApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-logging/src/main/java/com/gf/SpringbootLoggingApplication.java -------------------------------------------------------------------------------- /springboot-logging/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-logging/src/main/resources/application.properties -------------------------------------------------------------------------------- /springboot-logging/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-logging/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /springboot-logging/src/test/java/com/gf/SpringbootLoggingApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-logging/src/test/java/com/gf/SpringbootLoggingApplicationTests.java -------------------------------------------------------------------------------- /springboot-mybatis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-mybatis/.gitignore -------------------------------------------------------------------------------- /springboot-mybatis/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-mybatis/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-mybatis/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-mybatis/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-mybatis/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-mybatis/pom.xml -------------------------------------------------------------------------------- /springboot-mybatis/src/main/java/com/gf/SpringbootMybatisApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-mybatis/src/main/java/com/gf/SpringbootMybatisApplication.java -------------------------------------------------------------------------------- /springboot-mybatis/src/main/java/com/gf/config/CodeGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-mybatis/src/main/java/com/gf/config/CodeGenerator.java -------------------------------------------------------------------------------- /springboot-mybatis/src/main/java/com/gf/controller/EmployeeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-mybatis/src/main/java/com/gf/controller/EmployeeController.java -------------------------------------------------------------------------------- /springboot-mybatis/src/main/java/com/gf/entity/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-mybatis/src/main/java/com/gf/entity/Employee.java -------------------------------------------------------------------------------- /springboot-mybatis/src/main/java/com/gf/mapper/EmployeeMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-mybatis/src/main/java/com/gf/mapper/EmployeeMapper.java -------------------------------------------------------------------------------- /springboot-mybatis/src/main/java/com/gf/service/EmployeeService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-mybatis/src/main/java/com/gf/service/EmployeeService.java -------------------------------------------------------------------------------- /springboot-mybatis/src/main/java/com/gf/service/impl/EmployeeServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-mybatis/src/main/java/com/gf/service/impl/EmployeeServiceImpl.java -------------------------------------------------------------------------------- /springboot-mybatis/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-mybatis/src/main/resources/application.properties -------------------------------------------------------------------------------- /springboot-mybatis/src/main/resources/mapper/EmployeeMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-mybatis/src/main/resources/mapper/EmployeeMapper.xml -------------------------------------------------------------------------------- /springboot-mybatis/src/main/resources/templates/mapper.xml.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-mybatis/src/main/resources/templates/mapper.xml.vm -------------------------------------------------------------------------------- /springboot-mybatis/src/test/java/com/gf/SpringbootMybatisApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-mybatis/src/test/java/com/gf/SpringbootMybatisApplicationTests.java -------------------------------------------------------------------------------- /springboot-profile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-profile/.gitignore -------------------------------------------------------------------------------- /springboot-profile/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-profile/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-profile/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-profile/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-profile/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-profile/pom.xml -------------------------------------------------------------------------------- /springboot-profile/src/main/java/com/gf/SpringbootProfileApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-profile/src/main/java/com/gf/SpringbootProfileApplication.java -------------------------------------------------------------------------------- /springboot-profile/src/main/java/com/gf/controller/HelloController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-profile/src/main/java/com/gf/controller/HelloController.java -------------------------------------------------------------------------------- /springboot-profile/src/main/resources/application-dev.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8091 -------------------------------------------------------------------------------- /springboot-profile/src/main/resources/application-prod.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8092 -------------------------------------------------------------------------------- /springboot-profile/src/main/resources/application-test.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8093 -------------------------------------------------------------------------------- /springboot-profile/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-profile/src/main/resources/application.yml -------------------------------------------------------------------------------- /springboot-profile/src/test/java/com/gf/SpringbootProfileApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-profile/src/test/java/com/gf/SpringbootProfileApplicationTests.java -------------------------------------------------------------------------------- /springboot-rabbitmq/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-rabbitmq/.gitignore -------------------------------------------------------------------------------- /springboot-rabbitmq/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-rabbitmq/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-rabbitmq/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-rabbitmq/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-rabbitmq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-rabbitmq/pom.xml -------------------------------------------------------------------------------- /springboot-rabbitmq/src/main/java/com/gf/SpringbootRabbitmqApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-rabbitmq/src/main/java/com/gf/SpringbootRabbitmqApplication.java -------------------------------------------------------------------------------- /springboot-rabbitmq/src/main/java/com/gf/config/MyAMQPConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-rabbitmq/src/main/java/com/gf/config/MyAMQPConfig.java -------------------------------------------------------------------------------- /springboot-rabbitmq/src/main/java/com/gf/service/MQService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-rabbitmq/src/main/java/com/gf/service/MQService.java -------------------------------------------------------------------------------- /springboot-rabbitmq/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-rabbitmq/src/main/resources/application.properties -------------------------------------------------------------------------------- /springboot-rabbitmq/src/test/java/com/gf/SpringbootRabbitmqApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-rabbitmq/src/test/java/com/gf/SpringbootRabbitmqApplicationTests.java -------------------------------------------------------------------------------- /springboot-rocketmq-message/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-rocketmq-message/.gitignore -------------------------------------------------------------------------------- /springboot-rocketmq-message/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-rocketmq-message/pom.xml -------------------------------------------------------------------------------- /springboot-rocketmq-message/src/main/java/com/itwolfed/RocketmqMessageNormalApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-rocketmq-message/src/main/java/com/itwolfed/RocketmqMessageNormalApplication.java -------------------------------------------------------------------------------- /springboot-rocketmq-message/src/main/java/com/itwolfed/msg/Consumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-rocketmq-message/src/main/java/com/itwolfed/msg/Consumer.java -------------------------------------------------------------------------------- /springboot-rocketmq-message/src/main/java/com/itwolfed/msg/DelayConsumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-rocketmq-message/src/main/java/com/itwolfed/msg/DelayConsumer.java -------------------------------------------------------------------------------- /springboot-rocketmq-message/src/main/java/com/itwolfed/msg/OrderConsumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-rocketmq-message/src/main/java/com/itwolfed/msg/OrderConsumer.java -------------------------------------------------------------------------------- /springboot-rocketmq-message/src/main/java/com/itwolfed/msg/Producer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-rocketmq-message/src/main/java/com/itwolfed/msg/Producer.java -------------------------------------------------------------------------------- /springboot-rocketmq-message/src/main/java/com/itwolfed/msg/TxConsumerListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-rocketmq-message/src/main/java/com/itwolfed/msg/TxConsumerListener.java -------------------------------------------------------------------------------- /springboot-rocketmq-message/src/main/java/com/itwolfed/msg/TxProducerListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-rocketmq-message/src/main/java/com/itwolfed/msg/TxProducerListener.java -------------------------------------------------------------------------------- /springboot-rocketmq-message/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-rocketmq-message/src/main/resources/application.yml -------------------------------------------------------------------------------- /springboot-rocketmq-message/src/test/java/com/itwolfed/RocketmqMessageNormalApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-rocketmq-message/src/test/java/com/itwolfed/RocketmqMessageNormalApplicationTests.java -------------------------------------------------------------------------------- /springboot-seata/sbm-account-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-account-service/.gitignore -------------------------------------------------------------------------------- /springboot-seata/sbm-account-service/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-account-service/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /springboot-seata/sbm-account-service/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-account-service/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-seata/sbm-account-service/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-account-service/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-seata/sbm-account-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-account-service/pom.xml -------------------------------------------------------------------------------- /springboot-seata/sbm-account-service/src/main/java/com/gf/SbmAccountServiceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-account-service/src/main/java/com/gf/SbmAccountServiceApplication.java -------------------------------------------------------------------------------- /springboot-seata/sbm-account-service/src/main/java/com/gf/config/DataSourceConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-account-service/src/main/java/com/gf/config/DataSourceConfig.java -------------------------------------------------------------------------------- /springboot-seata/sbm-account-service/src/main/java/com/gf/config/SeataRestTemplateAutoConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-account-service/src/main/java/com/gf/config/SeataRestTemplateAutoConfiguration.java -------------------------------------------------------------------------------- /springboot-seata/sbm-account-service/src/main/java/com/gf/controller/AccountController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-account-service/src/main/java/com/gf/controller/AccountController.java -------------------------------------------------------------------------------- /springboot-seata/sbm-account-service/src/main/java/com/gf/entity/Account.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-account-service/src/main/java/com/gf/entity/Account.java -------------------------------------------------------------------------------- /springboot-seata/sbm-account-service/src/main/java/com/gf/filter/SeataFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-account-service/src/main/java/com/gf/filter/SeataFilter.java -------------------------------------------------------------------------------- /springboot-seata/sbm-account-service/src/main/java/com/gf/interceptor/SeataRestTemplateInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-account-service/src/main/java/com/gf/interceptor/SeataRestTemplateInterceptor.java -------------------------------------------------------------------------------- /springboot-seata/sbm-account-service/src/main/java/com/gf/mapper/AccountMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-account-service/src/main/java/com/gf/mapper/AccountMapper.java -------------------------------------------------------------------------------- /springboot-seata/sbm-account-service/src/main/java/com/gf/service/AccountService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-account-service/src/main/java/com/gf/service/AccountService.java -------------------------------------------------------------------------------- /springboot-seata/sbm-account-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-account-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /springboot-seata/sbm-account-service/src/main/resources/mapper/AccountMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-account-service/src/main/resources/mapper/AccountMapper.xml -------------------------------------------------------------------------------- /springboot-seata/sbm-account-service/src/test/java/com/gf/SbmAccountServiceApplicationTests.java: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /springboot-seata/sbm-business-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-business-service/.gitignore -------------------------------------------------------------------------------- /springboot-seata/sbm-business-service/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-business-service/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /springboot-seata/sbm-business-service/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-business-service/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-seata/sbm-business-service/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-business-service/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-seata/sbm-business-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-business-service/pom.xml -------------------------------------------------------------------------------- /springboot-seata/sbm-business-service/src/main/java/com/gf/SbmBusinessServiceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-business-service/src/main/java/com/gf/SbmBusinessServiceApplication.java -------------------------------------------------------------------------------- /springboot-seata/sbm-business-service/src/main/java/com/gf/client/OrderClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-business-service/src/main/java/com/gf/client/OrderClient.java -------------------------------------------------------------------------------- /springboot-seata/sbm-business-service/src/main/java/com/gf/client/StorageClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-business-service/src/main/java/com/gf/client/StorageClient.java -------------------------------------------------------------------------------- /springboot-seata/sbm-business-service/src/main/java/com/gf/config/SeataRestTemplateAutoConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-business-service/src/main/java/com/gf/config/SeataRestTemplateAutoConfiguration.java -------------------------------------------------------------------------------- /springboot-seata/sbm-business-service/src/main/java/com/gf/controller/BusinessController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-business-service/src/main/java/com/gf/controller/BusinessController.java -------------------------------------------------------------------------------- /springboot-seata/sbm-business-service/src/main/java/com/gf/filter/SeataFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-business-service/src/main/java/com/gf/filter/SeataFilter.java -------------------------------------------------------------------------------- /springboot-seata/sbm-business-service/src/main/java/com/gf/interceptor/SeataRestTemplateInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-business-service/src/main/java/com/gf/interceptor/SeataRestTemplateInterceptor.java -------------------------------------------------------------------------------- /springboot-seata/sbm-business-service/src/main/java/com/gf/service/BusinessService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-business-service/src/main/java/com/gf/service/BusinessService.java -------------------------------------------------------------------------------- /springboot-seata/sbm-business-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-business-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /springboot-seata/sbm-business-service/src/test/java/com/gf/SbmBusinessServiceApplicationTests.java: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /springboot-seata/sbm-order-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-order-service/.gitignore -------------------------------------------------------------------------------- /springboot-seata/sbm-order-service/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-order-service/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /springboot-seata/sbm-order-service/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-order-service/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-seata/sbm-order-service/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-order-service/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-seata/sbm-order-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-order-service/pom.xml -------------------------------------------------------------------------------- /springboot-seata/sbm-order-service/src/main/java/com/gf/SbmOrderServiceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-order-service/src/main/java/com/gf/SbmOrderServiceApplication.java -------------------------------------------------------------------------------- /springboot-seata/sbm-order-service/src/main/java/com/gf/client/AccountClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-order-service/src/main/java/com/gf/client/AccountClient.java -------------------------------------------------------------------------------- /springboot-seata/sbm-order-service/src/main/java/com/gf/config/DataSourceConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-order-service/src/main/java/com/gf/config/DataSourceConfig.java -------------------------------------------------------------------------------- /springboot-seata/sbm-order-service/src/main/java/com/gf/config/SeataRestTemplateAutoConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-order-service/src/main/java/com/gf/config/SeataRestTemplateAutoConfiguration.java -------------------------------------------------------------------------------- /springboot-seata/sbm-order-service/src/main/java/com/gf/controller/OrderController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-order-service/src/main/java/com/gf/controller/OrderController.java -------------------------------------------------------------------------------- /springboot-seata/sbm-order-service/src/main/java/com/gf/entity/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-order-service/src/main/java/com/gf/entity/Order.java -------------------------------------------------------------------------------- /springboot-seata/sbm-order-service/src/main/java/com/gf/filter/SeataFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-order-service/src/main/java/com/gf/filter/SeataFilter.java -------------------------------------------------------------------------------- /springboot-seata/sbm-order-service/src/main/java/com/gf/interceptor/SeataRestTemplateInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-order-service/src/main/java/com/gf/interceptor/SeataRestTemplateInterceptor.java -------------------------------------------------------------------------------- /springboot-seata/sbm-order-service/src/main/java/com/gf/mapper/OrderMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-order-service/src/main/java/com/gf/mapper/OrderMapper.java -------------------------------------------------------------------------------- /springboot-seata/sbm-order-service/src/main/java/com/gf/service/OrderService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-order-service/src/main/java/com/gf/service/OrderService.java -------------------------------------------------------------------------------- /springboot-seata/sbm-order-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-order-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /springboot-seata/sbm-order-service/src/main/resources/mapper/OrderMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-order-service/src/main/resources/mapper/OrderMapper.xml -------------------------------------------------------------------------------- /springboot-seata/sbm-order-service/src/test/java/com/gf/SbmOrderServiceApplicationTests.java: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /springboot-seata/sbm-storage-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-storage-service/.gitignore -------------------------------------------------------------------------------- /springboot-seata/sbm-storage-service/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-storage-service/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /springboot-seata/sbm-storage-service/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-storage-service/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-seata/sbm-storage-service/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-storage-service/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-seata/sbm-storage-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-storage-service/pom.xml -------------------------------------------------------------------------------- /springboot-seata/sbm-storage-service/src/main/java/com/gf/SbmStorageServiceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-storage-service/src/main/java/com/gf/SbmStorageServiceApplication.java -------------------------------------------------------------------------------- /springboot-seata/sbm-storage-service/src/main/java/com/gf/config/DataSourceConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-storage-service/src/main/java/com/gf/config/DataSourceConfig.java -------------------------------------------------------------------------------- /springboot-seata/sbm-storage-service/src/main/java/com/gf/config/SeataRestTemplateAutoConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-storage-service/src/main/java/com/gf/config/SeataRestTemplateAutoConfiguration.java -------------------------------------------------------------------------------- /springboot-seata/sbm-storage-service/src/main/java/com/gf/controller/StorageController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-storage-service/src/main/java/com/gf/controller/StorageController.java -------------------------------------------------------------------------------- /springboot-seata/sbm-storage-service/src/main/java/com/gf/entity/Storage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-storage-service/src/main/java/com/gf/entity/Storage.java -------------------------------------------------------------------------------- /springboot-seata/sbm-storage-service/src/main/java/com/gf/filter/SeataFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-storage-service/src/main/java/com/gf/filter/SeataFilter.java -------------------------------------------------------------------------------- /springboot-seata/sbm-storage-service/src/main/java/com/gf/interceptor/SeataRestTemplateInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-storage-service/src/main/java/com/gf/interceptor/SeataRestTemplateInterceptor.java -------------------------------------------------------------------------------- /springboot-seata/sbm-storage-service/src/main/java/com/gf/mapper/StorageMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-storage-service/src/main/java/com/gf/mapper/StorageMapper.java -------------------------------------------------------------------------------- /springboot-seata/sbm-storage-service/src/main/java/com/gf/service/StorageService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-storage-service/src/main/java/com/gf/service/StorageService.java -------------------------------------------------------------------------------- /springboot-seata/sbm-storage-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-storage-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /springboot-seata/sbm-storage-service/src/main/resources/mapper/StorageMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-seata/sbm-storage-service/src/main/resources/mapper/StorageMapper.xml -------------------------------------------------------------------------------- /springboot-seata/sbm-storage-service/src/test/java/com/gf/SbmStorageServiceApplicationTests.java: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /springboot-security-oauth2-jwt/jwt-authserver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2-jwt/jwt-authserver/.gitignore -------------------------------------------------------------------------------- /springboot-security-oauth2-jwt/jwt-authserver/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2-jwt/jwt-authserver/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /springboot-security-oauth2-jwt/jwt-authserver/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2-jwt/jwt-authserver/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-security-oauth2-jwt/jwt-authserver/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2-jwt/jwt-authserver/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-security-oauth2-jwt/jwt-authserver/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2-jwt/jwt-authserver/pom.xml -------------------------------------------------------------------------------- /springboot-security-oauth2-jwt/jwt-authserver/src/main/java/com/gf/JwtAuthserverApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2-jwt/jwt-authserver/src/main/java/com/gf/JwtAuthserverApplication.java -------------------------------------------------------------------------------- /springboot-security-oauth2-jwt/jwt-authserver/src/main/java/com/gf/config/OAuth2AuthorizationServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2-jwt/jwt-authserver/src/main/java/com/gf/config/OAuth2AuthorizationServer.java -------------------------------------------------------------------------------- /springboot-security-oauth2-jwt/jwt-authserver/src/main/java/com/gf/config/WebSecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2-jwt/jwt-authserver/src/main/java/com/gf/config/WebSecurityConfig.java -------------------------------------------------------------------------------- /springboot-security-oauth2-jwt/jwt-authserver/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2-jwt/jwt-authserver/src/main/resources/application.yml -------------------------------------------------------------------------------- /springboot-security-oauth2-jwt/jwt-authserver/src/test/java/com/gf/JwtAuthserverApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2-jwt/jwt-authserver/src/test/java/com/gf/JwtAuthserverApplicationTests.java -------------------------------------------------------------------------------- /springboot-security-oauth2-jwt/jwt-resourceserver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2-jwt/jwt-resourceserver/.gitignore -------------------------------------------------------------------------------- /springboot-security-oauth2-jwt/jwt-resourceserver/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2-jwt/jwt-resourceserver/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /springboot-security-oauth2-jwt/jwt-resourceserver/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2-jwt/jwt-resourceserver/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-security-oauth2-jwt/jwt-resourceserver/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2-jwt/jwt-resourceserver/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-security-oauth2-jwt/jwt-resourceserver/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2-jwt/jwt-resourceserver/pom.xml -------------------------------------------------------------------------------- /springboot-security-oauth2-jwt/jwt-resourceserver/src/main/java/com/gf/JwtResourceserverApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2-jwt/jwt-resourceserver/src/main/java/com/gf/JwtResourceserverApplication.java -------------------------------------------------------------------------------- /springboot-security-oauth2-jwt/jwt-resourceserver/src/main/java/com/gf/api/HelloController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2-jwt/jwt-resourceserver/src/main/java/com/gf/api/HelloController.java -------------------------------------------------------------------------------- /springboot-security-oauth2-jwt/jwt-resourceserver/src/main/java/com/gf/config/OAuth2ResourceServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2-jwt/jwt-resourceserver/src/main/java/com/gf/config/OAuth2ResourceServer.java -------------------------------------------------------------------------------- /springboot-security-oauth2-jwt/jwt-resourceserver/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2-jwt/jwt-resourceserver/src/main/resources/application.yml -------------------------------------------------------------------------------- /springboot-security-oauth2-jwt/jwt-resourceserver/src/test/java/com/gf/JwtResourceserverApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2-jwt/jwt-resourceserver/src/test/java/com/gf/JwtResourceserverApplicationTests.java -------------------------------------------------------------------------------- /springboot-security-oauth2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/.gitignore -------------------------------------------------------------------------------- /springboot-security-oauth2/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /springboot-security-oauth2/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-security-oauth2/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-security-oauth2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/pom.xml -------------------------------------------------------------------------------- /springboot-security-oauth2/src/main/java/com/gf/SpringbootSecurityApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/src/main/java/com/gf/SpringbootSecurityApplication.java -------------------------------------------------------------------------------- /springboot-security-oauth2/src/main/java/com/gf/config/AuthorizationServerConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/src/main/java/com/gf/config/AuthorizationServerConfiguration.java -------------------------------------------------------------------------------- /springboot-security-oauth2/src/main/java/com/gf/config/MyAccessDecisionManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/src/main/java/com/gf/config/MyAccessDecisionManager.java -------------------------------------------------------------------------------- /springboot-security-oauth2/src/main/java/com/gf/config/MyFilterSecurityInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/src/main/java/com/gf/config/MyFilterSecurityInterceptor.java -------------------------------------------------------------------------------- /springboot-security-oauth2/src/main/java/com/gf/config/MyInvocationSecurityMetadataSourceService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/src/main/java/com/gf/config/MyInvocationSecurityMetadataSourceService.java -------------------------------------------------------------------------------- /springboot-security-oauth2/src/main/java/com/gf/config/ResourceServerConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/src/main/java/com/gf/config/ResourceServerConfig.java -------------------------------------------------------------------------------- /springboot-security-oauth2/src/main/java/com/gf/config/SecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/src/main/java/com/gf/config/SecurityConfig.java -------------------------------------------------------------------------------- /springboot-security-oauth2/src/main/java/com/gf/config/WebResponseExceptionTranslateConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/src/main/java/com/gf/config/WebResponseExceptionTranslateConfig.java -------------------------------------------------------------------------------- /springboot-security-oauth2/src/main/java/com/gf/controller/HelloController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/src/main/java/com/gf/controller/HelloController.java -------------------------------------------------------------------------------- /springboot-security-oauth2/src/main/java/com/gf/controller/MainController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/src/main/java/com/gf/controller/MainController.java -------------------------------------------------------------------------------- /springboot-security-oauth2/src/main/java/com/gf/entity/Role.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/src/main/java/com/gf/entity/Role.java -------------------------------------------------------------------------------- /springboot-security-oauth2/src/main/java/com/gf/entity/RolePermisson.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/src/main/java/com/gf/entity/RolePermisson.java -------------------------------------------------------------------------------- /springboot-security-oauth2/src/main/java/com/gf/entity/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/src/main/java/com/gf/entity/User.java -------------------------------------------------------------------------------- /springboot-security-oauth2/src/main/java/com/gf/mapper/PermissionMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/src/main/java/com/gf/mapper/PermissionMapper.java -------------------------------------------------------------------------------- /springboot-security-oauth2/src/main/java/com/gf/mapper/RoleMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/src/main/java/com/gf/mapper/RoleMapper.java -------------------------------------------------------------------------------- /springboot-security-oauth2/src/main/java/com/gf/mapper/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/src/main/java/com/gf/mapper/UserMapper.java -------------------------------------------------------------------------------- /springboot-security-oauth2/src/main/java/com/gf/service/MyUserDetailsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/src/main/java/com/gf/service/MyUserDetailsService.java -------------------------------------------------------------------------------- /springboot-security-oauth2/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/src/main/resources/application.yml -------------------------------------------------------------------------------- /springboot-security-oauth2/src/main/resources/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/src/main/resources/templates/login.html -------------------------------------------------------------------------------- /springboot-security-oauth2/src/test/java/com/gf/SpringbootSecurityApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security-oauth2/src/test/java/com/gf/SpringbootSecurityApplicationTests.java -------------------------------------------------------------------------------- /springboot-security/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/.gitignore -------------------------------------------------------------------------------- /springboot-security/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /springboot-security/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-security/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springboot-security/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/pom.xml -------------------------------------------------------------------------------- /springboot-security/src/main/java/com/gf/SpringbootSecurityApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/src/main/java/com/gf/SpringbootSecurityApplication.java -------------------------------------------------------------------------------- /springboot-security/src/main/java/com/gf/config/MyAccessDecisionManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/src/main/java/com/gf/config/MyAccessDecisionManager.java -------------------------------------------------------------------------------- /springboot-security/src/main/java/com/gf/config/MyFilterSecurityInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/src/main/java/com/gf/config/MyFilterSecurityInterceptor.java -------------------------------------------------------------------------------- /springboot-security/src/main/java/com/gf/config/MyInvocationSecurityMetadataSourceService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/src/main/java/com/gf/config/MyInvocationSecurityMetadataSourceService.java -------------------------------------------------------------------------------- /springboot-security/src/main/java/com/gf/config/SecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/src/main/java/com/gf/config/SecurityConfig.java -------------------------------------------------------------------------------- /springboot-security/src/main/java/com/gf/controller/MainController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/src/main/java/com/gf/controller/MainController.java -------------------------------------------------------------------------------- /springboot-security/src/main/java/com/gf/entity/Role.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/src/main/java/com/gf/entity/Role.java -------------------------------------------------------------------------------- /springboot-security/src/main/java/com/gf/entity/RolePermisson.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/src/main/java/com/gf/entity/RolePermisson.java -------------------------------------------------------------------------------- /springboot-security/src/main/java/com/gf/entity/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/src/main/java/com/gf/entity/User.java -------------------------------------------------------------------------------- /springboot-security/src/main/java/com/gf/mapper/PermissionMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/src/main/java/com/gf/mapper/PermissionMapper.java -------------------------------------------------------------------------------- /springboot-security/src/main/java/com/gf/mapper/RoleMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/src/main/java/com/gf/mapper/RoleMapper.java -------------------------------------------------------------------------------- /springboot-security/src/main/java/com/gf/mapper/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/src/main/java/com/gf/mapper/UserMapper.java -------------------------------------------------------------------------------- /springboot-security/src/main/java/com/gf/service/MyUserDetailsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/src/main/java/com/gf/service/MyUserDetailsService.java -------------------------------------------------------------------------------- /springboot-security/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/src/main/resources/application.yml -------------------------------------------------------------------------------- /springboot-security/src/main/resources/templates/401.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/src/main/resources/templates/401.html -------------------------------------------------------------------------------- /springboot-security/src/main/resources/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/src/main/resources/templates/index.html -------------------------------------------------------------------------------- /springboot-security/src/main/resources/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/src/main/resources/templates/login.html -------------------------------------------------------------------------------- /springboot-security/src/main/resources/templates/user/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/src/main/resources/templates/user/admin.html -------------------------------------------------------------------------------- /springboot-security/src/main/resources/templates/user/common.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/src/main/resources/templates/user/common.html -------------------------------------------------------------------------------- /springboot-security/src/test/java/com/gf/SpringbootSecurityApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gf-huanchupk/SpringBootLearning/HEAD/springboot-security/src/test/java/com/gf/SpringbootSecurityApplicationTests.java --------------------------------------------------------------------------------