├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── docs ├── auth.png ├── auth │ ├── oauth2_client_token.png │ ├── oauth2_password_token.png │ └── oauth2_refresh_token.png ├── form-parm-po-vo.png └── pattern.md ├── jetfire-auth ├── db │ ├── ddl │ │ ├── oauth2_ddl.sql │ │ └── users_ddl.sql │ └── dml │ │ ├── oauth2_dml.sql │ │ └── users_dml.sql ├── jetfire-authentication-client │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springboot │ │ │ │ └── cloud │ │ │ │ └── auth │ │ │ │ └── client │ │ │ │ ├── provider │ │ │ │ └── AuthProvider.java │ │ │ │ └── service │ │ │ │ ├── IAuthService.java │ │ │ │ └── impl │ │ │ │ ├── AuthService.java │ │ │ │ └── Teee.java │ │ └── resources │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── springboot │ │ └── cloud │ │ └── auth │ │ └── client │ │ └── service │ │ └── impl │ │ └── AuthServiceTest.java ├── jetfire-authentication-server │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── docker │ │ │ └── Dockerfile │ │ ├── java │ │ │ └── com │ │ │ │ └── springboot │ │ │ │ └── auth │ │ │ │ └── authentication │ │ │ │ ├── Oauth2AuthenticationApplication.java │ │ │ │ ├── config │ │ │ │ ├── LoadResourceDefine.java │ │ │ │ ├── ResourceServerConfig.java │ │ │ │ └── WebServerSecurityConfig.java │ │ │ │ ├── dao │ │ │ │ └── ResourceMapper.java │ │ │ │ ├── entity │ │ │ │ └── Resource.java │ │ │ │ ├── rest │ │ │ │ ├── AuthenticationController.java │ │ │ │ └── HttpServletRequestAuthWrapper.java │ │ │ │ └── service │ │ │ │ ├── IAuthenticationService.java │ │ │ │ ├── IResourceService.java │ │ │ │ └── impl │ │ │ │ ├── AuthenticationService.java │ │ │ │ └── ResourceService.java │ │ └── resources │ │ │ └── application.yml │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springboot │ │ │ └── auth │ │ │ └── authentication │ │ │ ├── ApplicationTests.java │ │ │ ├── dao │ │ │ └── ResourceMapperTest.java │ │ │ └── service │ │ │ └── impl │ │ │ ├── AuthenticationServiceTest.java │ │ │ └── ResourceServiceTest.java │ │ └── resources │ │ └── application.yml ├── jetfire-authorization-server │ ├── .gitignore │ ├── pom.xml │ ├── readme.md │ └── src │ │ ├── main │ │ ├── docker │ │ │ └── Dockerfile │ │ ├── java │ │ │ └── com │ │ │ │ └── springboot │ │ │ │ └── auth │ │ │ │ └── authorization │ │ │ │ ├── Oauth2AuthorizationApplication.java │ │ │ │ ├── config │ │ │ │ ├── AuthenticationServerConfig.java │ │ │ │ ├── WebServerSecurityConfig.java │ │ │ │ └── custom │ │ │ │ │ └── CustomTokenEnhancer.java │ │ │ │ ├── dao │ │ │ │ ├── RoleMapper.java │ │ │ │ └── UserMapper.java │ │ │ │ ├── entity │ │ │ │ ├── Role.java │ │ │ │ └── User.java │ │ │ │ └── service │ │ │ │ ├── CustomUserDetailsService.java │ │ │ │ ├── IRoleService.java │ │ │ │ ├── IUserService.java │ │ │ │ └── impl │ │ │ │ ├── RoleService.java │ │ │ │ └── UserService.java │ │ └── resources │ │ │ └── application.yml │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springboot │ │ │ └── auth │ │ │ └── authorization │ │ │ └── ApplicationTests.java │ │ └── resources │ │ └── application.yml ├── pom.xml └── readme.md ├── jetfire-center ├── jetfire-bus │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springboot │ │ │ │ └── cloud │ │ │ │ └── center │ │ │ │ └── bus │ │ │ │ └── BusApplication.java │ │ └── resources │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── springboot │ │ └── cloud │ │ └── center │ │ └── bus │ │ └── BusApplicationTests.java ├── jetfire-config │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ ├── docker │ │ └── Dockerfile │ │ ├── java │ │ └── com │ │ │ └── springboot │ │ │ └── config │ │ │ └── ConfigServerApplication.java │ │ └── resources │ │ └── application.yml ├── jetfire-eureka │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── docker │ │ │ └── Dockerfile │ │ ├── java │ │ │ └── com │ │ │ │ └── springboot │ │ │ │ └── cloud │ │ │ │ └── EurekaApplication.java │ │ └── resources │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── springboot │ │ └── cloud │ │ └── EurekaApplicationTests.java └── pom.xml ├── jetfire-common ├── jetfire-core │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── springboot │ │ └── cloud │ │ └── common │ │ └── core │ │ ├── entity │ │ ├── form │ │ │ ├── BaseForm.java │ │ │ └── BaseQueryForm.java │ │ ├── param │ │ │ └── BaseParam.java │ │ ├── po │ │ │ └── BasePo.java │ │ └── vo │ │ │ ├── BaseVo.java │ │ │ └── Result.java │ │ ├── exception │ │ ├── BaseException.java │ │ ├── ErrorType.java │ │ └── ServiceException.java │ │ └── util │ │ └── UserContextHolder.java ├── jetfire-test │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── springboot │ │ │ └── cloud │ │ │ └── common │ │ │ └── test │ │ │ └── PrivateHelper.java │ │ └── test │ │ └── java │ │ └── com │ │ └── springboot │ │ └── cloud │ │ └── common │ │ └── test │ │ ├── PrivateHelperTest.java │ │ └── PrivateObject.java ├── jetfire-web │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── springboot │ │ │ └── common │ │ │ └── web │ │ │ ├── exception │ │ │ └── DefaultGlobalExceptionHandlerAdvice.java │ │ │ └── interceptor │ │ │ ├── AuditInterceptor.java │ │ │ └── UserInterceptor.java │ │ └── test │ │ └── java │ │ └── com │ │ └── springboot │ │ └── common │ │ └── web │ │ ├── exception │ │ └── DefaultGlobalExceptionHandlerAdviceTest.java │ │ └── interceptor │ │ └── UserInterceptorTest.java └── pom.xml ├── jetfire-gateway ├── jetfire-gateway-web │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── docker │ │ │ └── Dockerfile │ │ ├── java │ │ │ └── com │ │ │ │ └── springboot │ │ │ │ └── cloud │ │ │ │ └── gateway │ │ │ │ ├── GateWayApplication.java │ │ │ │ ├── config │ │ │ │ ├── DefaultRedisRateLimiter.java │ │ │ │ └── RequestRateLimiterConfig.java │ │ │ │ ├── exception │ │ │ │ ├── CustomErrorWebExceptionHandler.java │ │ │ │ ├── ExceptionAutoConfiguration.java │ │ │ │ └── GateWayExceptionHandlerAdvice.java │ │ │ │ └── filter │ │ │ │ └── AccessGatewayFilter.java │ │ └── resources │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── springboot │ │ └── cloud │ │ └── gateway │ │ └── GatewayApplicationTests.java ├── jetfire-gateway-zuul │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springboot │ │ │ │ └── zuul │ │ │ │ └── ZuulApplication.java │ │ └── resources │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── springboot │ │ └── zuul │ │ └── ConsumerApplicationTests.java └── pom.xml ├── jetfire-monitor ├── jetfire-admin │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springboot │ │ │ │ └── admin │ │ │ │ ├── AdminApplication.java │ │ │ │ └── SecurityConfig.java │ │ └── resources │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── springboot │ │ └── admin │ │ └── ConsumerApplicationTests.java ├── jetfire-hystrix-dashboard │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springboot │ │ │ │ └── hystrixdashboard │ │ │ │ └── HystrixDashboardApplication.java │ │ └── resources │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── springboot │ │ └── hystrixdashboard │ │ └── ApplicationTests.java ├── jetfire-turbine │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springboot │ │ │ │ └── turbine │ │ │ │ └── TurbineApplication.java │ │ └── resources │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── springboot │ │ └── turbine │ │ └── ConsumerApplicationTests.java ├── jetfire-zipkin │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springboot │ │ │ │ └── zipkin │ │ │ │ └── ZipkinServerApplication.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── springboot │ │ └── zipkin │ │ └── ZipkinServerApplicationTests.java └── pom.xml ├── jetfire-services ├── jetfire-consumer-feign │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springboot │ │ │ │ └── feign │ │ │ │ ├── FeignConsumerApplication.java │ │ │ │ ├── rest │ │ │ │ └── ClassController.java │ │ │ │ └── service │ │ │ │ ├── ClassService.java │ │ │ │ └── ClassServiceFallback.java │ │ └── resources │ │ │ └── application.yml │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springboot │ │ │ └── feign │ │ │ ├── ApplicationTests.java │ │ │ └── rest │ │ │ └── ClassControllerTest.java │ │ └── resources │ │ └── application.yml ├── jetfire-consumer-ribbon │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── springboot │ │ │ │ └── ribbon │ │ │ │ ├── RibbonConsumerApplication.java │ │ │ │ ├── rest │ │ │ │ └── ClassController.java │ │ │ │ └── service │ │ │ │ └── ClassService.java │ │ └── resources │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── springboot │ │ └── ribbon │ │ └── RibbonConsumerApplicationTests.java ├── jetfire-producer-jpa │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── db │ │ │ └── ddl │ │ │ │ └── V1__products.sql │ │ ├── docker │ │ │ └── Dockerfile │ │ ├── java │ │ │ └── com │ │ │ │ └── springboot │ │ │ │ └── services │ │ │ │ └── producer │ │ │ │ └── jpa │ │ │ │ ├── ProducerApplication.java │ │ │ │ ├── dao │ │ │ │ └── ProductMapper.java │ │ │ │ ├── entity │ │ │ │ └── po │ │ │ │ │ ├── JpaBasePo.java │ │ │ │ │ └── Product.java │ │ │ │ └── exception │ │ │ │ └── GlobalExceptionHandlerAdvice.java │ │ └── resources │ │ │ └── application.yml │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springboot │ │ │ └── services │ │ │ └── producer │ │ │ └── jpa │ │ │ └── rest │ │ │ └── ProductControllerTests.java │ │ └── resources │ │ └── application.yml ├── jetfire-producer │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── db │ │ │ └── ddl │ │ │ │ └── V1__products.sql │ │ ├── docker │ │ │ └── Dockerfile │ │ ├── docs │ │ │ └── asciidoc │ │ │ │ ├── generated │ │ │ │ ├── definitions.adoc │ │ │ │ ├── overview.adoc │ │ │ │ ├── paths.adoc │ │ │ │ └── security.adoc │ │ │ │ └── html │ │ │ │ ├── definitions.html │ │ │ │ ├── overview.html │ │ │ │ ├── paths.html │ │ │ │ └── security.html │ │ ├── java │ │ │ └── com │ │ │ │ └── springboot │ │ │ │ └── services │ │ │ │ └── producer │ │ │ │ ├── ProducerApplication.java │ │ │ │ ├── config │ │ │ │ ├── BusConfig.java │ │ │ │ ├── MybatisConfig.java │ │ │ │ ├── RedisConfig.java │ │ │ │ ├── SwaggerConfig.java │ │ │ │ └── WebServerMvcConfigurerAdapter.java │ │ │ │ ├── dao │ │ │ │ └── ProductMapper.java │ │ │ │ ├── entity │ │ │ │ ├── form │ │ │ │ │ ├── ProductForm.java │ │ │ │ │ └── ProductQueryForm.java │ │ │ │ ├── param │ │ │ │ │ └── ProductQueryParam.java │ │ │ │ └── po │ │ │ │ │ └── Product.java │ │ │ │ ├── events │ │ │ │ ├── BusReceiver.java │ │ │ │ ├── BusSender.java │ │ │ │ ├── RabbitReceiver.java │ │ │ │ ├── RedisReceiver.java │ │ │ │ └── RedisSender.java │ │ │ │ ├── exception │ │ │ │ └── GlobalExceptionHandlerAdvice.java │ │ │ │ ├── rest │ │ │ │ ├── FooController.java │ │ │ │ ├── HelloController.java │ │ │ │ └── ProductController.java │ │ │ │ ├── service │ │ │ │ ├── IProductService.java │ │ │ │ └── ProductService.java │ │ │ │ └── task │ │ │ │ └── ScheduledTasks.java │ │ └── resources │ │ │ ├── application.yml │ │ │ └── bootstrap.yml │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── springboot │ │ │ └── services │ │ │ └── producer │ │ │ ├── MvcMockTest.java │ │ │ ├── rest │ │ │ ├── HelloControllerTests.java │ │ │ └── ProductControllerTests.java │ │ │ └── service │ │ │ └── ProductServiceTests.java │ │ └── resources │ │ ├── application.yml │ │ └── contracts │ │ └── HelloController.groovy └── pom.xml ├── pom.xml └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/LICENSE -------------------------------------------------------------------------------- /docs/auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/docs/auth.png -------------------------------------------------------------------------------- /docs/auth/oauth2_client_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/docs/auth/oauth2_client_token.png -------------------------------------------------------------------------------- /docs/auth/oauth2_password_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/docs/auth/oauth2_password_token.png -------------------------------------------------------------------------------- /docs/auth/oauth2_refresh_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/docs/auth/oauth2_refresh_token.png -------------------------------------------------------------------------------- /docs/form-parm-po-vo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/docs/form-parm-po-vo.png -------------------------------------------------------------------------------- /docs/pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/docs/pattern.md -------------------------------------------------------------------------------- /jetfire-auth/db/ddl/oauth2_ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/db/ddl/oauth2_ddl.sql -------------------------------------------------------------------------------- /jetfire-auth/db/ddl/users_ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/db/ddl/users_ddl.sql -------------------------------------------------------------------------------- /jetfire-auth/db/dml/oauth2_dml.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/db/dml/oauth2_dml.sql -------------------------------------------------------------------------------- /jetfire-auth/db/dml/users_dml.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/db/dml/users_dml.sql -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-client/.gitignore -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-client/pom.xml -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-client/src/main/java/com/springboot/cloud/auth/client/provider/AuthProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-client/src/main/java/com/springboot/cloud/auth/client/provider/AuthProvider.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-client/src/main/java/com/springboot/cloud/auth/client/service/IAuthService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-client/src/main/java/com/springboot/cloud/auth/client/service/IAuthService.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-client/src/main/java/com/springboot/cloud/auth/client/service/impl/AuthService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-client/src/main/java/com/springboot/cloud/auth/client/service/impl/AuthService.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-client/src/main/java/com/springboot/cloud/auth/client/service/impl/Teee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-client/src/main/java/com/springboot/cloud/auth/client/service/impl/Teee.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-client/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-client/src/main/resources/application.yml -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-client/src/test/java/com/springboot/cloud/auth/client/service/impl/AuthServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-client/src/test/java/com/springboot/cloud/auth/client/service/impl/AuthServiceTest.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-server/.gitignore -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-server/pom.xml -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-server/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-server/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/Oauth2AuthenticationApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/Oauth2AuthenticationApplication.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/config/LoadResourceDefine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/config/LoadResourceDefine.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/config/ResourceServerConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/config/ResourceServerConfig.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/config/WebServerSecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/config/WebServerSecurityConfig.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/dao/ResourceMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/dao/ResourceMapper.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/entity/Resource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/entity/Resource.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/rest/AuthenticationController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/rest/AuthenticationController.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/rest/HttpServletRequestAuthWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/rest/HttpServletRequestAuthWrapper.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/service/IAuthenticationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/service/IAuthenticationService.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/service/IResourceService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/service/IResourceService.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/service/impl/AuthenticationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/service/impl/AuthenticationService.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/service/impl/ResourceService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-server/src/main/java/com/springboot/auth/authentication/service/impl/ResourceService.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-server/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-server/src/main/resources/application.yml -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-server/src/test/java/com/springboot/auth/authentication/ApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-server/src/test/java/com/springboot/auth/authentication/ApplicationTests.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-server/src/test/java/com/springboot/auth/authentication/dao/ResourceMapperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-server/src/test/java/com/springboot/auth/authentication/dao/ResourceMapperTest.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-server/src/test/java/com/springboot/auth/authentication/service/impl/AuthenticationServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-server/src/test/java/com/springboot/auth/authentication/service/impl/AuthenticationServiceTest.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-server/src/test/java/com/springboot/auth/authentication/service/impl/ResourceServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-server/src/test/java/com/springboot/auth/authentication/service/impl/ResourceServiceTest.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authentication-server/src/test/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authentication-server/src/test/resources/application.yml -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authorization-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authorization-server/.gitignore -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authorization-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authorization-server/pom.xml -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authorization-server/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authorization-server/readme.md -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authorization-server/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authorization-server/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/Oauth2AuthorizationApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/Oauth2AuthorizationApplication.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/config/AuthenticationServerConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/config/AuthenticationServerConfig.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/config/WebServerSecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/config/WebServerSecurityConfig.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/config/custom/CustomTokenEnhancer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/config/custom/CustomTokenEnhancer.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/dao/RoleMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/dao/RoleMapper.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/dao/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/dao/UserMapper.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/entity/Role.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/entity/Role.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/entity/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/entity/User.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/service/CustomUserDetailsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/service/CustomUserDetailsService.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/service/IRoleService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/service/IRoleService.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/service/IUserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/service/IUserService.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/service/impl/RoleService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/service/impl/RoleService.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/service/impl/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authorization-server/src/main/java/com/springboot/auth/authorization/service/impl/UserService.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authorization-server/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authorization-server/src/main/resources/application.yml -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authorization-server/src/test/java/com/springboot/auth/authorization/ApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authorization-server/src/test/java/com/springboot/auth/authorization/ApplicationTests.java -------------------------------------------------------------------------------- /jetfire-auth/jetfire-authorization-server/src/test/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/jetfire-authorization-server/src/test/resources/application.yml -------------------------------------------------------------------------------- /jetfire-auth/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/pom.xml -------------------------------------------------------------------------------- /jetfire-auth/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-auth/readme.md -------------------------------------------------------------------------------- /jetfire-center/jetfire-bus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-center/jetfire-bus/.gitignore -------------------------------------------------------------------------------- /jetfire-center/jetfire-bus/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-center/jetfire-bus/pom.xml -------------------------------------------------------------------------------- /jetfire-center/jetfire-bus/src/main/java/com/springboot/cloud/center/bus/BusApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-center/jetfire-bus/src/main/java/com/springboot/cloud/center/bus/BusApplication.java -------------------------------------------------------------------------------- /jetfire-center/jetfire-bus/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-center/jetfire-bus/src/main/resources/application.yml -------------------------------------------------------------------------------- /jetfire-center/jetfire-bus/src/test/java/com/springboot/cloud/center/bus/BusApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-center/jetfire-bus/src/test/java/com/springboot/cloud/center/bus/BusApplicationTests.java -------------------------------------------------------------------------------- /jetfire-center/jetfire-config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-center/jetfire-config/.gitignore -------------------------------------------------------------------------------- /jetfire-center/jetfire-config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-center/jetfire-config/pom.xml -------------------------------------------------------------------------------- /jetfire-center/jetfire-config/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-center/jetfire-config/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /jetfire-center/jetfire-config/src/main/java/com/springboot/config/ConfigServerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-center/jetfire-config/src/main/java/com/springboot/config/ConfigServerApplication.java -------------------------------------------------------------------------------- /jetfire-center/jetfire-config/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-center/jetfire-config/src/main/resources/application.yml -------------------------------------------------------------------------------- /jetfire-center/jetfire-eureka/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-center/jetfire-eureka/.gitignore -------------------------------------------------------------------------------- /jetfire-center/jetfire-eureka/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-center/jetfire-eureka/pom.xml -------------------------------------------------------------------------------- /jetfire-center/jetfire-eureka/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-center/jetfire-eureka/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /jetfire-center/jetfire-eureka/src/main/java/com/springboot/cloud/EurekaApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-center/jetfire-eureka/src/main/java/com/springboot/cloud/EurekaApplication.java -------------------------------------------------------------------------------- /jetfire-center/jetfire-eureka/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-center/jetfire-eureka/src/main/resources/application.yml -------------------------------------------------------------------------------- /jetfire-center/jetfire-eureka/src/test/java/com/springboot/cloud/EurekaApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-center/jetfire-eureka/src/test/java/com/springboot/cloud/EurekaApplicationTests.java -------------------------------------------------------------------------------- /jetfire-center/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-center/pom.xml -------------------------------------------------------------------------------- /jetfire-common/jetfire-core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-core/.gitignore -------------------------------------------------------------------------------- /jetfire-common/jetfire-core/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-core/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /jetfire-common/jetfire-core/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-core/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /jetfire-common/jetfire-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-core/pom.xml -------------------------------------------------------------------------------- /jetfire-common/jetfire-core/src/main/java/com/springboot/cloud/common/core/entity/form/BaseForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-core/src/main/java/com/springboot/cloud/common/core/entity/form/BaseForm.java -------------------------------------------------------------------------------- /jetfire-common/jetfire-core/src/main/java/com/springboot/cloud/common/core/entity/form/BaseQueryForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-core/src/main/java/com/springboot/cloud/common/core/entity/form/BaseQueryForm.java -------------------------------------------------------------------------------- /jetfire-common/jetfire-core/src/main/java/com/springboot/cloud/common/core/entity/param/BaseParam.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-core/src/main/java/com/springboot/cloud/common/core/entity/param/BaseParam.java -------------------------------------------------------------------------------- /jetfire-common/jetfire-core/src/main/java/com/springboot/cloud/common/core/entity/po/BasePo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-core/src/main/java/com/springboot/cloud/common/core/entity/po/BasePo.java -------------------------------------------------------------------------------- /jetfire-common/jetfire-core/src/main/java/com/springboot/cloud/common/core/entity/vo/BaseVo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-core/src/main/java/com/springboot/cloud/common/core/entity/vo/BaseVo.java -------------------------------------------------------------------------------- /jetfire-common/jetfire-core/src/main/java/com/springboot/cloud/common/core/entity/vo/Result.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-core/src/main/java/com/springboot/cloud/common/core/entity/vo/Result.java -------------------------------------------------------------------------------- /jetfire-common/jetfire-core/src/main/java/com/springboot/cloud/common/core/exception/BaseException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-core/src/main/java/com/springboot/cloud/common/core/exception/BaseException.java -------------------------------------------------------------------------------- /jetfire-common/jetfire-core/src/main/java/com/springboot/cloud/common/core/exception/ErrorType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-core/src/main/java/com/springboot/cloud/common/core/exception/ErrorType.java -------------------------------------------------------------------------------- /jetfire-common/jetfire-core/src/main/java/com/springboot/cloud/common/core/exception/ServiceException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-core/src/main/java/com/springboot/cloud/common/core/exception/ServiceException.java -------------------------------------------------------------------------------- /jetfire-common/jetfire-core/src/main/java/com/springboot/cloud/common/core/util/UserContextHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-core/src/main/java/com/springboot/cloud/common/core/util/UserContextHolder.java -------------------------------------------------------------------------------- /jetfire-common/jetfire-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-test/pom.xml -------------------------------------------------------------------------------- /jetfire-common/jetfire-test/src/main/java/com/springboot/cloud/common/test/PrivateHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-test/src/main/java/com/springboot/cloud/common/test/PrivateHelper.java -------------------------------------------------------------------------------- /jetfire-common/jetfire-test/src/test/java/com/springboot/cloud/common/test/PrivateHelperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-test/src/test/java/com/springboot/cloud/common/test/PrivateHelperTest.java -------------------------------------------------------------------------------- /jetfire-common/jetfire-test/src/test/java/com/springboot/cloud/common/test/PrivateObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-test/src/test/java/com/springboot/cloud/common/test/PrivateObject.java -------------------------------------------------------------------------------- /jetfire-common/jetfire-web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-web/pom.xml -------------------------------------------------------------------------------- /jetfire-common/jetfire-web/src/main/java/com/springboot/common/web/exception/DefaultGlobalExceptionHandlerAdvice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-web/src/main/java/com/springboot/common/web/exception/DefaultGlobalExceptionHandlerAdvice.java -------------------------------------------------------------------------------- /jetfire-common/jetfire-web/src/main/java/com/springboot/common/web/interceptor/AuditInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-web/src/main/java/com/springboot/common/web/interceptor/AuditInterceptor.java -------------------------------------------------------------------------------- /jetfire-common/jetfire-web/src/main/java/com/springboot/common/web/interceptor/UserInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-web/src/main/java/com/springboot/common/web/interceptor/UserInterceptor.java -------------------------------------------------------------------------------- /jetfire-common/jetfire-web/src/test/java/com/springboot/common/web/exception/DefaultGlobalExceptionHandlerAdviceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-web/src/test/java/com/springboot/common/web/exception/DefaultGlobalExceptionHandlerAdviceTest.java -------------------------------------------------------------------------------- /jetfire-common/jetfire-web/src/test/java/com/springboot/common/web/interceptor/UserInterceptorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/jetfire-web/src/test/java/com/springboot/common/web/interceptor/UserInterceptorTest.java -------------------------------------------------------------------------------- /jetfire-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-common/pom.xml -------------------------------------------------------------------------------- /jetfire-gateway/jetfire-gateway-web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-gateway/jetfire-gateway-web/.gitignore -------------------------------------------------------------------------------- /jetfire-gateway/jetfire-gateway-web/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-gateway/jetfire-gateway-web/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /jetfire-gateway/jetfire-gateway-web/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-gateway/jetfire-gateway-web/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /jetfire-gateway/jetfire-gateway-web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-gateway/jetfire-gateway-web/pom.xml -------------------------------------------------------------------------------- /jetfire-gateway/jetfire-gateway-web/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-gateway/jetfire-gateway-web/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /jetfire-gateway/jetfire-gateway-web/src/main/java/com/springboot/cloud/gateway/GateWayApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-gateway/jetfire-gateway-web/src/main/java/com/springboot/cloud/gateway/GateWayApplication.java -------------------------------------------------------------------------------- /jetfire-gateway/jetfire-gateway-web/src/main/java/com/springboot/cloud/gateway/config/DefaultRedisRateLimiter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-gateway/jetfire-gateway-web/src/main/java/com/springboot/cloud/gateway/config/DefaultRedisRateLimiter.java -------------------------------------------------------------------------------- /jetfire-gateway/jetfire-gateway-web/src/main/java/com/springboot/cloud/gateway/config/RequestRateLimiterConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-gateway/jetfire-gateway-web/src/main/java/com/springboot/cloud/gateway/config/RequestRateLimiterConfig.java -------------------------------------------------------------------------------- /jetfire-gateway/jetfire-gateway-web/src/main/java/com/springboot/cloud/gateway/exception/CustomErrorWebExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-gateway/jetfire-gateway-web/src/main/java/com/springboot/cloud/gateway/exception/CustomErrorWebExceptionHandler.java -------------------------------------------------------------------------------- /jetfire-gateway/jetfire-gateway-web/src/main/java/com/springboot/cloud/gateway/exception/ExceptionAutoConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-gateway/jetfire-gateway-web/src/main/java/com/springboot/cloud/gateway/exception/ExceptionAutoConfiguration.java -------------------------------------------------------------------------------- /jetfire-gateway/jetfire-gateway-web/src/main/java/com/springboot/cloud/gateway/exception/GateWayExceptionHandlerAdvice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-gateway/jetfire-gateway-web/src/main/java/com/springboot/cloud/gateway/exception/GateWayExceptionHandlerAdvice.java -------------------------------------------------------------------------------- /jetfire-gateway/jetfire-gateway-web/src/main/java/com/springboot/cloud/gateway/filter/AccessGatewayFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-gateway/jetfire-gateway-web/src/main/java/com/springboot/cloud/gateway/filter/AccessGatewayFilter.java -------------------------------------------------------------------------------- /jetfire-gateway/jetfire-gateway-web/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-gateway/jetfire-gateway-web/src/main/resources/application.yml -------------------------------------------------------------------------------- /jetfire-gateway/jetfire-gateway-web/src/test/java/com/springboot/cloud/gateway/GatewayApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-gateway/jetfire-gateway-web/src/test/java/com/springboot/cloud/gateway/GatewayApplicationTests.java -------------------------------------------------------------------------------- /jetfire-gateway/jetfire-gateway-zuul/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-gateway/jetfire-gateway-zuul/.gitignore -------------------------------------------------------------------------------- /jetfire-gateway/jetfire-gateway-zuul/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-gateway/jetfire-gateway-zuul/pom.xml -------------------------------------------------------------------------------- /jetfire-gateway/jetfire-gateway-zuul/src/main/java/com/springboot/zuul/ZuulApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-gateway/jetfire-gateway-zuul/src/main/java/com/springboot/zuul/ZuulApplication.java -------------------------------------------------------------------------------- /jetfire-gateway/jetfire-gateway-zuul/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-gateway/jetfire-gateway-zuul/src/main/resources/application.yml -------------------------------------------------------------------------------- /jetfire-gateway/jetfire-gateway-zuul/src/test/java/com/springboot/zuul/ConsumerApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-gateway/jetfire-gateway-zuul/src/test/java/com/springboot/zuul/ConsumerApplicationTests.java -------------------------------------------------------------------------------- /jetfire-gateway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-gateway/pom.xml -------------------------------------------------------------------------------- /jetfire-monitor/jetfire-admin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/jetfire-admin/.gitignore -------------------------------------------------------------------------------- /jetfire-monitor/jetfire-admin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/jetfire-admin/pom.xml -------------------------------------------------------------------------------- /jetfire-monitor/jetfire-admin/src/main/java/com/springboot/admin/AdminApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/jetfire-admin/src/main/java/com/springboot/admin/AdminApplication.java -------------------------------------------------------------------------------- /jetfire-monitor/jetfire-admin/src/main/java/com/springboot/admin/SecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/jetfire-admin/src/main/java/com/springboot/admin/SecurityConfig.java -------------------------------------------------------------------------------- /jetfire-monitor/jetfire-admin/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/jetfire-admin/src/main/resources/application.yml -------------------------------------------------------------------------------- /jetfire-monitor/jetfire-admin/src/test/java/com/springboot/admin/ConsumerApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/jetfire-admin/src/test/java/com/springboot/admin/ConsumerApplicationTests.java -------------------------------------------------------------------------------- /jetfire-monitor/jetfire-hystrix-dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/jetfire-hystrix-dashboard/.gitignore -------------------------------------------------------------------------------- /jetfire-monitor/jetfire-hystrix-dashboard/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/jetfire-hystrix-dashboard/pom.xml -------------------------------------------------------------------------------- /jetfire-monitor/jetfire-hystrix-dashboard/src/main/java/com/springboot/hystrixdashboard/HystrixDashboardApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/jetfire-hystrix-dashboard/src/main/java/com/springboot/hystrixdashboard/HystrixDashboardApplication.java -------------------------------------------------------------------------------- /jetfire-monitor/jetfire-hystrix-dashboard/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/jetfire-hystrix-dashboard/src/main/resources/application.yml -------------------------------------------------------------------------------- /jetfire-monitor/jetfire-hystrix-dashboard/src/test/java/com/springboot/hystrixdashboard/ApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/jetfire-hystrix-dashboard/src/test/java/com/springboot/hystrixdashboard/ApplicationTests.java -------------------------------------------------------------------------------- /jetfire-monitor/jetfire-turbine/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/jetfire-turbine/.gitignore -------------------------------------------------------------------------------- /jetfire-monitor/jetfire-turbine/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/jetfire-turbine/pom.xml -------------------------------------------------------------------------------- /jetfire-monitor/jetfire-turbine/src/main/java/com/springboot/turbine/TurbineApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/jetfire-turbine/src/main/java/com/springboot/turbine/TurbineApplication.java -------------------------------------------------------------------------------- /jetfire-monitor/jetfire-turbine/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/jetfire-turbine/src/main/resources/application.yml -------------------------------------------------------------------------------- /jetfire-monitor/jetfire-turbine/src/test/java/com/springboot/turbine/ConsumerApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/jetfire-turbine/src/test/java/com/springboot/turbine/ConsumerApplicationTests.java -------------------------------------------------------------------------------- /jetfire-monitor/jetfire-zipkin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/jetfire-zipkin/.gitignore -------------------------------------------------------------------------------- /jetfire-monitor/jetfire-zipkin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/jetfire-zipkin/pom.xml -------------------------------------------------------------------------------- /jetfire-monitor/jetfire-zipkin/src/main/java/com/springboot/zipkin/ZipkinServerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/jetfire-zipkin/src/main/java/com/springboot/zipkin/ZipkinServerApplication.java -------------------------------------------------------------------------------- /jetfire-monitor/jetfire-zipkin/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/jetfire-zipkin/src/main/resources/application.properties -------------------------------------------------------------------------------- /jetfire-monitor/jetfire-zipkin/src/test/java/com/springboot/zipkin/ZipkinServerApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/jetfire-zipkin/src/test/java/com/springboot/zipkin/ZipkinServerApplicationTests.java -------------------------------------------------------------------------------- /jetfire-monitor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-monitor/pom.xml -------------------------------------------------------------------------------- /jetfire-services/jetfire-consumer-feign/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-consumer-feign/.gitignore -------------------------------------------------------------------------------- /jetfire-services/jetfire-consumer-feign/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-consumer-feign/pom.xml -------------------------------------------------------------------------------- /jetfire-services/jetfire-consumer-feign/src/main/java/com/springboot/feign/FeignConsumerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-consumer-feign/src/main/java/com/springboot/feign/FeignConsumerApplication.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-consumer-feign/src/main/java/com/springboot/feign/rest/ClassController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-consumer-feign/src/main/java/com/springboot/feign/rest/ClassController.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-consumer-feign/src/main/java/com/springboot/feign/service/ClassService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-consumer-feign/src/main/java/com/springboot/feign/service/ClassService.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-consumer-feign/src/main/java/com/springboot/feign/service/ClassServiceFallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-consumer-feign/src/main/java/com/springboot/feign/service/ClassServiceFallback.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-consumer-feign/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-consumer-feign/src/main/resources/application.yml -------------------------------------------------------------------------------- /jetfire-services/jetfire-consumer-feign/src/test/java/com/springboot/feign/ApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-consumer-feign/src/test/java/com/springboot/feign/ApplicationTests.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-consumer-feign/src/test/java/com/springboot/feign/rest/ClassControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-consumer-feign/src/test/java/com/springboot/feign/rest/ClassControllerTest.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-consumer-feign/src/test/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-consumer-feign/src/test/resources/application.yml -------------------------------------------------------------------------------- /jetfire-services/jetfire-consumer-ribbon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-consumer-ribbon/.gitignore -------------------------------------------------------------------------------- /jetfire-services/jetfire-consumer-ribbon/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-consumer-ribbon/pom.xml -------------------------------------------------------------------------------- /jetfire-services/jetfire-consumer-ribbon/src/main/java/com/springboot/ribbon/RibbonConsumerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-consumer-ribbon/src/main/java/com/springboot/ribbon/RibbonConsumerApplication.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-consumer-ribbon/src/main/java/com/springboot/ribbon/rest/ClassController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-consumer-ribbon/src/main/java/com/springboot/ribbon/rest/ClassController.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-consumer-ribbon/src/main/java/com/springboot/ribbon/service/ClassService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-consumer-ribbon/src/main/java/com/springboot/ribbon/service/ClassService.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-consumer-ribbon/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-consumer-ribbon/src/main/resources/application.yml -------------------------------------------------------------------------------- /jetfire-services/jetfire-consumer-ribbon/src/test/java/com/springboot/ribbon/RibbonConsumerApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-consumer-ribbon/src/test/java/com/springboot/ribbon/RibbonConsumerApplicationTests.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer-jpa/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer-jpa/.gitignore -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer-jpa/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer-jpa/pom.xml -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer-jpa/src/main/db/ddl/V1__products.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer-jpa/src/main/db/ddl/V1__products.sql -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer-jpa/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer-jpa/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer-jpa/src/main/java/com/springboot/services/producer/jpa/ProducerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer-jpa/src/main/java/com/springboot/services/producer/jpa/ProducerApplication.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer-jpa/src/main/java/com/springboot/services/producer/jpa/dao/ProductMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer-jpa/src/main/java/com/springboot/services/producer/jpa/dao/ProductMapper.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer-jpa/src/main/java/com/springboot/services/producer/jpa/entity/po/JpaBasePo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer-jpa/src/main/java/com/springboot/services/producer/jpa/entity/po/JpaBasePo.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer-jpa/src/main/java/com/springboot/services/producer/jpa/entity/po/Product.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer-jpa/src/main/java/com/springboot/services/producer/jpa/entity/po/Product.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer-jpa/src/main/java/com/springboot/services/producer/jpa/exception/GlobalExceptionHandlerAdvice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer-jpa/src/main/java/com/springboot/services/producer/jpa/exception/GlobalExceptionHandlerAdvice.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer-jpa/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer-jpa/src/main/resources/application.yml -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer-jpa/src/test/java/com/springboot/services/producer/jpa/rest/ProductControllerTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer-jpa/src/test/java/com/springboot/services/producer/jpa/rest/ProductControllerTests.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer-jpa/src/test/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer-jpa/src/test/resources/application.yml -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/.gitignore -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/pom.xml -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/db/ddl/V1__products.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/db/ddl/V1__products.sql -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/docs/asciidoc/generated/definitions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/docs/asciidoc/generated/definitions.adoc -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/docs/asciidoc/generated/overview.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/docs/asciidoc/generated/overview.adoc -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/docs/asciidoc/generated/paths.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/docs/asciidoc/generated/paths.adoc -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/docs/asciidoc/generated/security.adoc: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/docs/asciidoc/html/definitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/docs/asciidoc/html/definitions.html -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/docs/asciidoc/html/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/docs/asciidoc/html/overview.html -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/docs/asciidoc/html/paths.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/docs/asciidoc/html/paths.html -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/docs/asciidoc/html/security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/docs/asciidoc/html/security.html -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/ProducerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/ProducerApplication.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/config/BusConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/config/BusConfig.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/config/MybatisConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/config/MybatisConfig.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/config/RedisConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/config/RedisConfig.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/config/SwaggerConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/config/SwaggerConfig.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/config/WebServerMvcConfigurerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/config/WebServerMvcConfigurerAdapter.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/dao/ProductMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/dao/ProductMapper.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/entity/form/ProductForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/entity/form/ProductForm.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/entity/form/ProductQueryForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/entity/form/ProductQueryForm.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/entity/param/ProductQueryParam.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/entity/param/ProductQueryParam.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/entity/po/Product.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/entity/po/Product.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/events/BusReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/events/BusReceiver.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/events/BusSender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/events/BusSender.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/events/RabbitReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/events/RabbitReceiver.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/events/RedisReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/events/RedisReceiver.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/events/RedisSender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/events/RedisSender.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/exception/GlobalExceptionHandlerAdvice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/exception/GlobalExceptionHandlerAdvice.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/rest/FooController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/rest/FooController.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/rest/HelloController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/rest/HelloController.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/rest/ProductController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/rest/ProductController.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/service/IProductService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/service/IProductService.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/service/ProductService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/service/ProductService.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/task/ScheduledTasks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/java/com/springboot/services/producer/task/ScheduledTasks.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/resources/application.yml -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/main/resources/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/main/resources/bootstrap.yml -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/test/java/com/springboot/services/producer/MvcMockTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/test/java/com/springboot/services/producer/MvcMockTest.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/test/java/com/springboot/services/producer/rest/HelloControllerTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/test/java/com/springboot/services/producer/rest/HelloControllerTests.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/test/java/com/springboot/services/producer/rest/ProductControllerTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/test/java/com/springboot/services/producer/rest/ProductControllerTests.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/test/java/com/springboot/services/producer/service/ProductServiceTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/test/java/com/springboot/services/producer/service/ProductServiceTests.java -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/test/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/test/resources/application.yml -------------------------------------------------------------------------------- /jetfire-services/jetfire-producer/src/test/resources/contracts/HelloController.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/jetfire-producer/src/test/resources/contracts/HelloController.groovy -------------------------------------------------------------------------------- /jetfire-services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/jetfire-services/pom.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/pom.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorrellz/JetfireCloud/HEAD/readme.md --------------------------------------------------------------------------------