-
Notifications
You must be signed in to change notification settings - Fork 4
WS Notes
Jinlian(Sunny) Wang edited this page May 9, 2017
·
40 revisions
- To kill a process:
kill `sudo lsof -t -i:8080` - Run Spring Boot in Command Line:
mvn spring-boot:run - Stop Program in Command Line: Ctrl + C
- Run Spring Boot in Eclipse: RMC, Run As/Debug As, Spring Boot App
- Stop Spring Boot in Eclipse: RMC, Terminate and Remove
- Maven Plugin in Eclipse
- Offline Mode:
mvn -o [goals]Grab dependencies for offline:mvn dependency:go-offline - Documentation: Spring Boot Reference Guide
- Book: Maven: The Complete Reference
- Spring Tutorial: Building an Application with Spring Boot
- Documentation: Properties & configuration
- Spring Tutorial: Routing and Filtering
- Pattern: API Gateway by Chris Richardson
- Various MicroService Patterns: A pattern language for microservices by Chris Richardson
- Design Pattern: Pattern: Backends For Frontends by Sam Newman
- Design Pattern: Backends For Frontends @ SoundCloud
- Documentation: Spring Cloud Netflix
- Design Pattern: Implementing API Gateway pattern with Netflix Zuul and Spring Cloud
- Spring Tutorial: Centralized Configuration
- Spring Tutorial: Service Registration and Discovery
- Spring Tutorial: Circuit Breaker through Hystrix
- Hystrix/Turbine Article:Hystrix / Monitor Dashboard and Turbine and many other spring cloud articles byRyan J. Baxter
- Hystrix/Turbine Article:Spring Cloud With Turbine
- Spring Tutorial: Tracing In Microservices With Spring Cloud Sleuth
- Spring Dependency Injection by PanKaj at http://www.journaldev.com/
- Spring @Autowired Annotation
- logback.xml Example
- Spring Boot - Loading Initial Data
- Spring Data JPA Tutorial using Spring Boot
- Spring Tutorial by Java Point
- Creating a Batch Service
- Spring Data JPA Documentation
- Configuring PostgreSQL
- Spring Tutorial by TutorialsPoint
- Java Custom Annotations Example
- Aspect Oriented Programming With Spring Boot
- Spring Bean Life Cycle Tutorial - by Arvind Rai
- Spring 4 MVC+AngularJS CRUD Example using $http service