microservices-spring-boot
microservices-spring-boot copied to clipboard
The source code for series of articles on Medium about Microservices with Spring Boot
Howdy - thanks for the tutorial. I had trouble building, so I made this a multi-module maven setup. root/pom.xml is a the root, parent-project/pom.xml is the parent, and all the...
- All applications dockerized - docker-compose added Check it out here : https://github.com/ramazansakin/microservices-spring-boot
- Added root pom.xml - Upgraded to spring boot 2.3.5.RELEASE & spring cloud HOXTON.SR8 All can pull and test here : https://github.com/ramazansakin/microservices-spring-boot
I want to create the build of each project for deployment, but when it comes to the auth service. it shows classnotfound for the classes which are present in common.
Hi While I am trying to build project getting the maven error like below. Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile (default-compile) on project spring-eureka-auth: Fatal error compiling: java.lang.ExceptionInInitializerError: com.sun.tools.javac.code.TypeTags
{ "timestamp": "2019-07-29T10:13:48.743+0000", "status": 500, "error": "Internal Server Error", "message": "Failed to process import candidates for configuration class [org.springframework.cloud.netflix.ribbon.RibbonClientConfiguration]; nested exception is java.lang.IllegalStateException: Failed to introspect annotated methods on class...
Update to latest: - Spring Boot: 2.2.2.RELEASE - Spring Cloud: Hoxton.RELEASE Also, covers Issue #5
When i try to call localhost:8762/gallery/1 the restTemplate.getForObject("http://image-service/images/", List.class) method give me response ConnectionTimeout. Attached the output of the console of the GalleryService service [connectionTimeOut.log](https://github.com/OmarElGabry/microservices-spring-boot/files/4334154/connectionTimeOut.log) I follow the tutorial and...
Hi @OmarElGabry , Thanks for a great starter kit. I'm planning to use your code for a POC and want to create a shared project as models for all services....