- Spring Boot 2.0.2.RELEASE
- Working with MongoDB
- Testing with Embedded MongoDB
- Services and Controller testing
- Switching profie
- Code coverage with Jacoco (Separate result between Unit tests and Integration tests)
// Test with embedded mongodb
$mvn clean install -Dspring.profiles.active=use-mongodb-embedded
// Test with Test mongodb
$mvn clean install -Dspring.profiles.active=test
// Test with Production mongodb
$mvn clean install -Dspring.profiles.active=production