├── MessageQueue ├── ActiveMQ-P2P │ ├── ActiveMQ-P2P-Consumer │ │ ├── HELP.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── app │ │ │ │ │ │ ├── ActiveMqP2PConsumerApplication.java │ │ │ │ │ │ ├── message │ │ │ │ │ │ └── MyMessage.java │ │ │ │ │ │ └── reciever │ │ │ │ │ │ └── MyMessageReader.java │ │ │ │ └── resources │ │ │ │ │ └── application.properties │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── app │ │ │ │ └── ActiveMqP2PConsumerApplicationTests.java │ │ └── target │ │ │ ├── classes │ │ │ ├── META-INF │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── maven │ │ │ │ │ └── com.app │ │ │ │ │ └── ActiveMQ-P2P-Consumer │ │ │ │ │ ├── pom.properties │ │ │ │ │ └── pom.xml │ │ │ ├── application.properties │ │ │ └── com │ │ │ │ └── app │ │ │ │ ├── ActiveMqP2PConsumerApplication.class │ │ │ │ ├── message │ │ │ │ └── MyMessage.class │ │ │ │ └── reciever │ │ │ │ └── MyMessageReader.class │ │ │ └── test-classes │ │ │ └── com │ │ │ └── app │ │ │ └── ActiveMqP2PConsumerApplicationTests.class │ └── ActiveMQ-P2P-Producer │ │ ├── HELP.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── ActiveMqP2PProducerApplication.java │ │ │ │ │ ├── message │ │ │ │ │ └── MyMessage.java │ │ │ │ │ └── sender │ │ │ │ │ └── MyMessageSender.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── ActiveMqP2PProducerApplicationTests.java │ │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── ActiveMQ-P2P-Producer │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ ├── ActiveMqP2PProducerApplication.class │ │ │ ├── message │ │ │ └── MyMessage.class │ │ │ └── sender │ │ │ └── MyMessageSender.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── ActiveMqP2PProducerApplicationTests.class ├── ActiveMQ-Pub-Sub │ ├── ActiveMQ-Pub-Sub-Consumer1 │ │ ├── HELP.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── app │ │ │ │ │ │ ├── ActiveMqPubSubConsumer1Application.java │ │ │ │ │ │ ├── message │ │ │ │ │ │ └── MyMessage.java │ │ │ │ │ │ └── reciever │ │ │ │ │ │ └── MyMessageReader.java │ │ │ │ └── resources │ │ │ │ │ └── application.properties │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── app │ │ │ │ └── ActiveMqPubSubConsumer1ApplicationTests.java │ │ └── target │ │ │ ├── classes │ │ │ ├── META-INF │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── maven │ │ │ │ │ └── com.app │ │ │ │ │ └── ActiveMQ-Pub-Sub-Consumer1 │ │ │ │ │ ├── pom.properties │ │ │ │ │ └── pom.xml │ │ │ ├── application.properties │ │ │ └── com │ │ │ │ └── app │ │ │ │ ├── ActiveMqPubSubConsumer1Application.class │ │ │ │ ├── message │ │ │ │ └── MyMessage.class │ │ │ │ └── reciever │ │ │ │ └── MyMessageReader.class │ │ │ └── test-classes │ │ │ └── com │ │ │ └── app │ │ │ └── ActiveMqPubSubConsumer1ApplicationTests.class │ ├── ActiveMQ-Pub-Sub-Consumer2 │ │ ├── HELP.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── app │ │ │ │ │ │ ├── ActiveMqPubSubConsumer2Application.java │ │ │ │ │ │ ├── message │ │ │ │ │ │ └── MyMessage.java │ │ │ │ │ │ └── reciever │ │ │ │ │ │ └── MyMessageReader.java │ │ │ │ └── resources │ │ │ │ │ └── application.properties │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── app │ │ │ │ └── ActiveMqPubSubConsumer2ApplicationTests.java │ │ └── target │ │ │ ├── classes │ │ │ ├── META-INF │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── maven │ │ │ │ │ └── com.app │ │ │ │ │ └── ActiveMQ-Pub-Sub-Consumer2 │ │ │ │ │ ├── pom.properties │ │ │ │ │ └── pom.xml │ │ │ ├── application.properties │ │ │ └── com │ │ │ │ └── app │ │ │ │ ├── ActiveMqPubSubConsumer2Application.class │ │ │ │ ├── message │ │ │ │ └── MyMessage.class │ │ │ │ └── reciever │ │ │ │ └── MyMessageReader.class │ │ │ └── test-classes │ │ │ └── com │ │ │ └── app │ │ │ └── ActiveMqPubSubConsumer2ApplicationTests.class │ ├── ActiveMQ-Pub-Sub-Consumer3 │ │ ├── HELP.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── app │ │ │ │ │ │ ├── ActiveMqPubSubConsumer3Application.java │ │ │ │ │ │ ├── message │ │ │ │ │ │ └── MyMessage.java │ │ │ │ │ │ └── reciever │ │ │ │ │ │ └── MyMessageReader.java │ │ │ │ └── resources │ │ │ │ │ └── application.properties │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── app │ │ │ │ └── ActiveMqPubSubConsumer3ApplicationTests.java │ │ └── target │ │ │ ├── classes │ │ │ ├── META-INF │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── maven │ │ │ │ │ └── com.app │ │ │ │ │ └── ActiveMQ-Pub-Sub-Consumer3 │ │ │ │ │ ├── pom.properties │ │ │ │ │ └── pom.xml │ │ │ ├── application.properties │ │ │ └── com │ │ │ │ └── app │ │ │ │ ├── ActiveMqPubSubConsumer3Application.class │ │ │ │ ├── message │ │ │ │ └── MyMessage.class │ │ │ │ └── reciever │ │ │ │ └── MyMessageReader.class │ │ │ └── test-classes │ │ │ └── com │ │ │ └── app │ │ │ └── ActiveMqPubSubConsumer3ApplicationTests.class │ └── ActiveMQ-Pub-Sub-Producer │ │ ├── HELP.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── ActiveMqPubSubProducerApplication.java │ │ │ │ │ ├── message │ │ │ │ │ └── MyMessage.java │ │ │ │ │ └── sender │ │ │ │ │ └── MyMessageSender.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── ActiveMqPubSubProducerApplicationTests.java │ │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── ActiveMQ-Pub-Sub-Producer │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ ├── ActiveMqPubSubProducerApplication.class │ │ │ ├── message │ │ │ └── MyMessage.class │ │ │ └── sender │ │ │ └── MyMessageSender.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── ActiveMqPubSubProducerApplicationTests.class ├── ActiveMQ.pdf ├── Apache Kafka.pdf ├── KafkaConsumer │ ├── Kafka-consumer-1 │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── KafkaConsumer1Application.java │ │ │ │ │ └── consumer │ │ │ │ │ ├── MessageReciever.java │ │ │ │ │ └── MessageStorage.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── KafkaConsumer1ApplicationTests.java │ ├── Kafka-consumer-2 │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── KafkaConsumer2Application.java │ │ │ │ │ └── consumer │ │ │ │ │ ├── MessageReciever.java │ │ │ │ │ └── MessageStorage.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── KafkaConsumer2ApplicationTests.java │ └── Kafka-consumer-3 │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── app │ │ │ │ ├── KafkaConsumer3Application.java │ │ │ │ └── consumer │ │ │ │ ├── MessageReciever.java │ │ │ │ └── MessageStorage.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── app │ │ └── KafkaConsumer1ApplicationTests.java └── KafkaProducer │ └── Kafka-producer │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── app │ │ │ ├── KafkaProducerApplication.java │ │ │ ├── controller │ │ │ └── ProducerController.java │ │ │ └── producer │ │ │ └── MessageService.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── app │ └── KafkaProducerApplicationTests.java ├── Microservices ├── Consumer-UsingRestTemplate-LegacyStyle │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── ConsumerUsingRestTemplateLegacyStyleApplication.java │ │ │ │ │ └── consumer │ │ │ │ │ └── ConsumerRunner.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── ConsumerUsingRestTemplateLegacyStyleApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── Consumer-UsingRestTemplate-LegacyStyle │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ ├── ConsumerUsingRestTemplateLegacyStyleApplication.class │ │ │ └── consumer │ │ │ └── ConsumerRunner.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── ConsumerUsingRestTemplateLegacyStyleApplicationTests.class ├── Parameters-in-webServices-Producer │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── ParametersProiderApplication.java │ │ │ │ │ ├── controller │ │ │ │ │ └── EmployeeController.java │ │ │ │ │ └── model │ │ │ │ │ └── Employee.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── ProviderRestLegacyStyleApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── Provider-Rest-LegacyStyle │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ ├── ParametersProiderApplication.class │ │ │ ├── controller │ │ │ └── EmployeeController.class │ │ │ └── model │ │ │ └── Employee.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── ProviderRestLegacyStyleApplicationTests.class ├── Provider-Crud-Rest-Mysql-Jpa │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── ProviderRestMysqlJpaApplication.java │ │ │ │ │ ├── controller │ │ │ │ │ ├── RestExceptionHandler.java │ │ │ │ │ └── StudentController.java │ │ │ │ │ ├── exception │ │ │ │ │ ├── ApiError.java │ │ │ │ │ └── StudentNotFoundException.java │ │ │ │ │ ├── model │ │ │ │ │ └── Student.java │ │ │ │ │ ├── repo │ │ │ │ │ └── StudentRepository.java │ │ │ │ │ └── service │ │ │ │ │ ├── IStudentService.java │ │ │ │ │ └── impl │ │ │ │ │ └── StudentServiceImple.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── ProviderRestMysqlJpaApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── Provider-Crud-Rest-Mysql-Jpa │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ ├── ProviderRestMysqlJpaApplication.class │ │ │ ├── controller │ │ │ ├── RestExceptionHandler.class │ │ │ └── StudentController.class │ │ │ ├── exception │ │ │ ├── ApiError.class │ │ │ └── StudentNotFoundException.class │ │ │ ├── model │ │ │ └── Student.class │ │ │ ├── repo │ │ │ └── StudentRepository.class │ │ │ └── service │ │ │ ├── IStudentService.class │ │ │ └── impl │ │ │ └── StudentServiceImple.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── ProviderRestMysqlJpaApplicationTests.class ├── Provider-Rest-LegacyStyle │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── ProviderRestLegacyStyleApplication.java │ │ │ │ │ ├── controller │ │ │ │ │ └── EmployeeController.java │ │ │ │ │ └── model │ │ │ │ │ └── Employee.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── ProviderRestLegacyStyleApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── Provider-Rest-LegacyStyle │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ ├── ProviderRestLegacyStyleApplication.class │ │ │ ├── controller │ │ │ └── EmployeeController.class │ │ │ └── model │ │ │ └── Employee.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── ProviderRestLegacyStyleApplicationTests.class ├── Provider-Rest-Mysql-Swagger │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── ProviderRestMysqlSwagger.java │ │ │ │ │ ├── config │ │ │ │ │ └── SwaggerConfig.java │ │ │ │ │ ├── controller │ │ │ │ │ └── rest │ │ │ │ │ │ ├── CustomerController.java │ │ │ │ │ │ ├── EmployeeController.java │ │ │ │ │ │ ├── ItemController.java │ │ │ │ │ │ ├── RestExceptionHandler.java │ │ │ │ │ │ └── StudentController.java │ │ │ │ │ ├── exception │ │ │ │ │ ├── ApiError.java │ │ │ │ │ ├── CustomerNotFoundException.java │ │ │ │ │ ├── EmployeeNotFoundException.java │ │ │ │ │ ├── ItemNotFoundException.java │ │ │ │ │ └── StudentNotFoundException.java │ │ │ │ │ ├── model │ │ │ │ │ ├── Customer.java │ │ │ │ │ ├── Employee.java │ │ │ │ │ ├── Item.java │ │ │ │ │ └── Student.java │ │ │ │ │ ├── repo │ │ │ │ │ ├── CustomerRepository.java │ │ │ │ │ ├── EmployeeRepository.java │ │ │ │ │ ├── ItemRepository.java │ │ │ │ │ └── StudentRepository.java │ │ │ │ │ └── service │ │ │ │ │ ├── ICustomerService.java │ │ │ │ │ ├── IEmployeeService.java │ │ │ │ │ ├── IItemService.java │ │ │ │ │ ├── IStudentService.java │ │ │ │ │ └── impl │ │ │ │ │ ├── CustomerServiceImpl.java │ │ │ │ │ ├── EmployeeServiceImpl.java │ │ │ │ │ ├── ItemServiceImpl.java │ │ │ │ │ └── StudentServiceImpl.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── ProviderRestMysqlJpaApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── Provider-Crud-Rest-Mysql-Jpa │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ ├── ProviderRestMysqlSwagger.class │ │ │ ├── config │ │ │ └── SwaggerConfig.class │ │ │ ├── controller │ │ │ └── rest │ │ │ │ ├── CustomerController.class │ │ │ │ ├── EmployeeController.class │ │ │ │ ├── ItemController.class │ │ │ │ ├── RestExceptionHandler.class │ │ │ │ └── StudentController.class │ │ │ ├── exception │ │ │ ├── ApiError.class │ │ │ ├── CustomerNotFoundException.class │ │ │ ├── EmployeeNotFoundException.class │ │ │ ├── ItemNotFoundException.class │ │ │ └── StudentNotFoundException.class │ │ │ ├── model │ │ │ ├── Customer.class │ │ │ ├── Employee.class │ │ │ ├── Item.class │ │ │ └── Student.class │ │ │ ├── repo │ │ │ ├── CustomerRepository.class │ │ │ ├── EmployeeRepository.class │ │ │ ├── ItemRepository.class │ │ │ └── StudentRepository.class │ │ │ └── service │ │ │ ├── ICustomerService.class │ │ │ ├── IEmployeeService.class │ │ │ ├── IItemService.class │ │ │ ├── IStudentService.class │ │ │ └── impl │ │ │ ├── CustomerServiceImpl.class │ │ │ ├── EmployeeServiceImpl.class │ │ │ ├── ItemServiceImpl.class │ │ │ └── StudentServiceImpl.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── ProviderRestMysqlJpaApplicationTests.class ├── SpringCloudConfigServer │ ├── SpringCloud_ConfigServer-ConfigClinet-CartApp │ │ ├── HELP.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── app │ │ │ │ │ │ ├── SpringCloudConfigServerConfigClinetCartAppApplication.java │ │ │ │ │ │ └── controller │ │ │ │ │ │ └── CartRestController.java │ │ │ │ └── resources │ │ │ │ │ ├── application.properties │ │ │ │ │ └── bootstrap.properties │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── app │ │ │ │ └── SpringCloudConfigServerConfigClinetCartAppApplicationTests.java │ │ └── target │ │ │ ├── classes │ │ │ ├── META-INF │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── maven │ │ │ │ │ └── com.app │ │ │ │ │ └── SpringCloud_ConfigServer-ConfigClinet-CartApp │ │ │ │ │ └── pom.xml │ │ │ ├── application.properties │ │ │ ├── bootstrap.properties │ │ │ └── com │ │ │ │ └── app │ │ │ │ ├── SpringCloudConfigServerConfigClinetCartAppApplication.class │ │ │ │ └── controller │ │ │ │ └── CartRestController.class │ │ │ └── test-classes │ │ │ └── com │ │ │ └── app │ │ │ └── SpringCloudConfigServerConfigClinetCartAppApplicationTests.class │ ├── SpringCloud_ConfigServer-ConfigServer-External │ │ ├── HELP.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── app │ │ │ │ │ │ └── SpringCloudConfigServerConfigServerExternalApplication.java │ │ │ │ └── resources │ │ │ │ │ └── application.properties │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── app │ │ │ │ └── SpringCloudConfigServerConfigServerExternalApplicationTests.java │ │ └── target │ │ │ ├── classes │ │ │ ├── META-INF │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── maven │ │ │ │ │ └── com.app │ │ │ │ │ └── SpringCloud_ConfigServer-ConfigServer-External │ │ │ │ │ └── pom.xml │ │ │ ├── application.properties │ │ │ └── com │ │ │ │ └── app │ │ │ │ └── SpringCloudConfigServerConfigServerExternalApplication.class │ │ │ └── test-classes │ │ │ └── com │ │ │ └── app │ │ │ └── SpringCloudConfigServerConfigServerExternalApplicationTests.class │ ├── SpringCloud_ConfigServer-ConfigServer-Native │ │ ├── HELP.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── app │ │ │ │ │ │ └── SpringCloudConfigServerConfigServerApplication.java │ │ │ │ └── resources │ │ │ │ │ ├── application.properties │ │ │ │ │ └── myConfig │ │ │ │ │ └── application.properties │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── app │ │ │ │ └── SpringCloudConfigServerConfigServerApplicationTests.java │ │ └── target │ │ │ ├── classes │ │ │ ├── META-INF │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── maven │ │ │ │ │ └── com.app │ │ │ │ │ └── SpringCloud_ConfigServer-ConfigServer │ │ │ │ │ ├── pom.properties │ │ │ │ │ └── pom.xml │ │ │ ├── application.properties │ │ │ ├── com │ │ │ │ └── app │ │ │ │ │ └── SpringCloudConfigServerConfigServerApplication.class │ │ │ └── myConfig │ │ │ │ └── application.properties │ │ │ └── test-classes │ │ │ └── com │ │ │ └── app │ │ │ └── SpringCloudConfigServerConfigServerApplicationTests.class │ ├── SpringCloud_ConfigServer-EurekaServer │ │ ├── HELP.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── app │ │ │ │ │ │ └── SpringCloudConfigServerEurekaServerApplication.java │ │ │ │ └── resources │ │ │ │ │ └── application.properties │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── app │ │ │ │ └── SpringCloudConfigServerEurekaServerApplicationTests.java │ │ └── target │ │ │ ├── classes │ │ │ ├── META-INF │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── maven │ │ │ │ │ └── com.app │ │ │ │ │ └── SpringCloud_ConfigServer-EurekaServer │ │ │ │ │ ├── pom.properties │ │ │ │ │ └── pom.xml │ │ │ ├── application.properties │ │ │ └── com │ │ │ │ └── app │ │ │ │ └── SpringCloudConfigServerEurekaServerApplication.class │ │ │ └── test-classes │ │ │ └── com │ │ │ └── app │ │ │ └── SpringCloudConfigServerEurekaServerApplicationTests.class │ └── config server.pdf ├── SpringCloudEureka │ ├── SpringCloud-Eureka-Consumer │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringCloudEurekaConsumerApplication.java │ │ │ │ │ └── consumer │ │ │ │ │ ├── EmployeeRestConsumer_DiscoveryClient.java │ │ │ │ │ ├── EmployeeRestConsumer_FeignClient.java │ │ │ │ │ ├── EmployeeRestConsumer_LoadBalancerClient.java │ │ │ │ │ └── EmployeeRestController_FeignClient.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringCloudEurekaConsumerApplicationTests.java │ ├── SpringCloud-Eureka-Provider │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringCloudEurekaProviderApplication.java │ │ │ │ │ └── controller │ │ │ │ │ └── rest │ │ │ │ │ └── EmployeeController.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringCloudEurekaProviderApplicationTests.java │ └── SpringCloud-Eureka-Server │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── app │ │ │ │ └── SpringCloudEurekaServerApplication.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── app │ │ └── SpringCloudEurekaServerApplicationTests.java ├── SpringCloudFaultTolerence-CircuitBreaker │ ├── SpringCloud_FaultToleremce-Hystrix-EurekaServer │ │ ├── HELP.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── target │ │ │ └── classes │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ └── application.properties │ └── SpringCloud_FaultToleremce-Hystrix-ExampleApp │ │ ├── HELP.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── app │ │ │ │ ├── SpringCloudFaultToleremceHystrixExampleAppApplication.java │ │ │ │ └── controller │ │ │ │ └── ExampleRestController.java │ │ │ └── resources │ │ │ └── application.properties │ │ └── target │ │ └── classes │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── application.properties │ │ └── com │ │ └── app │ │ └── controller │ │ └── ExampleRestController.class ├── SpringCloudFeignClient │ ├── SpringCloud_FeignClient-Consumer-Admin │ │ ├── HELP.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── app │ │ │ │ │ │ ├── SpringCloudFeignClientConsumerAdminApplication.java │ │ │ │ │ │ ├── consumer │ │ │ │ │ │ └── DeptRestConsumer.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ └── Dept.java │ │ │ │ │ │ └── rest │ │ │ │ │ │ └── controller │ │ │ │ │ │ └── AdminRestController.java │ │ │ │ └── resources │ │ │ │ │ └── application.yml │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── app │ │ │ │ └── SpringCloudFeignClientConsumerAdminApplicationTests.java │ │ └── target │ │ │ ├── classes │ │ │ ├── META-INF │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── maven │ │ │ │ │ └── com.app │ │ │ │ │ └── SpringCloud_FeignClient-Consumer-Admin │ │ │ │ │ ├── pom.properties │ │ │ │ │ └── pom.xml │ │ │ ├── application.yml │ │ │ └── com │ │ │ │ └── app │ │ │ │ ├── SpringCloudFeignClientConsumerAdminApplication.class │ │ │ │ ├── consumer │ │ │ │ └── DeptRestConsumer.class │ │ │ │ ├── model │ │ │ │ └── Dept.class │ │ │ │ └── rest │ │ │ │ └── controller │ │ │ │ └── AdminRestController.class │ │ │ └── test-classes │ │ │ └── com │ │ │ └── app │ │ │ └── SpringCloudFeignClientConsumerAdminApplicationTests.class │ ├── SpringCloud_FeignClient-EurekaServer │ │ ├── HELP.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── app │ │ │ │ │ │ └── SpringCloudFeignClientEurekaServerApplication.java │ │ │ │ └── resources │ │ │ │ │ └── application.yml │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── app │ │ │ │ └── SpringCloudFeignClientEurekaServerApplicationTests.java │ │ └── target │ │ │ ├── classes │ │ │ ├── META-INF │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── maven │ │ │ │ │ └── com.app │ │ │ │ │ └── SpringCloud_FeignClient-EurekaServer │ │ │ │ │ ├── pom.properties │ │ │ │ │ └── pom.xml │ │ │ ├── application.yml │ │ │ └── com │ │ │ │ └── app │ │ │ │ └── SpringCloudFeignClientEurekaServerApplication.class │ │ │ └── test-classes │ │ │ └── com │ │ │ └── app │ │ │ └── SpringCloudFeignClientEurekaServerApplicationTests.class │ └── SpringCloud_FeignClient-Provider-Dept │ │ ├── HELP.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringCloudFeignClientProviderDeptApplication.java │ │ │ │ │ ├── model │ │ │ │ │ └── Dept.java │ │ │ │ │ └── rest │ │ │ │ │ └── controller │ │ │ │ │ └── DeptRestController.java │ │ │ └── resources │ │ │ │ └── application.yml │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringCloudFeignClientConsumerAdminApplicationTests.java │ │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringCloud_FeignClient-Provider-Dept │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.yml │ │ └── com │ │ │ └── app │ │ │ ├── SpringCloudFeignClientProviderDeptApplication.class │ │ │ ├── model │ │ │ └── Dept.class │ │ │ └── rest │ │ │ └── controller │ │ │ └── DeptRestController.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringCloudFeignClientConsumerAdminApplicationTests.class ├── SpringCloudLoadBalancerClient │ ├── SpringCloud_LoadBalancer-Eureka-Producer-Model │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringCloudLoadBalancerEurekaProducerModelApplication.java │ │ │ │ │ ├── controller │ │ │ │ │ └── rest │ │ │ │ │ │ └── ModelRestController.java │ │ │ │ │ └── model │ │ │ │ │ └── Employee.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringCloudLoadBalancerEurekaProducerModelApplicationTests.java │ ├── SpringCloud_LoadBalancer-Eureka-Producer-Product │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringCloudLoadBalancerEurekaProducerProductApplication.java │ │ │ │ │ └── controller │ │ │ │ │ └── rest │ │ │ │ │ ├── ModelConsumerRestController.java │ │ │ │ │ └── ProductRestController.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringCloudLoadBalancerEurekaProducerProductApplicationTests.java │ └── SpringCloud_LoadBalancer-Eureka-Server │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── app │ │ │ │ └── SpringCloudLoadBalancerEurekaServerApplication.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── app │ │ └── SpringCloudLoadBalancerEurekaServerApplicationTests.java └── SpringCloudZuul │ ├── SpringCloud_ZuulGateway-ConstomerApp │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── CustomerRestController.java │ │ │ │ │ └── SpringCloudZuulGatewayConstomerAppApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringCloudZuulGatewayConstomerAppApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringCloud_ZuulGateway-ConstomerApp │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ ├── CustomerRestController.class │ │ │ └── SpringCloudZuulGatewayConstomerAppApplication.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringCloudZuulGatewayConstomerAppApplicationTests.class │ ├── SpringCloud_ZuulGateway-EurekaServer │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ └── SpringCloudZuulGatewayEurekaServerApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringCloudZuulGatewayEurekaServerApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringCloud_ZuulGateway-EurekaServer │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ └── SpringCloudZuulGatewayEurekaServerApplication.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringCloudZuulGatewayEurekaServerApplicationTests.class │ └── SpringCloud_ZuulGateway-ZuulServer │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── app │ │ │ │ ├── SpringCloudZuulGatewayZuulServerApplication.java │ │ │ │ └── filters │ │ │ │ ├── ExceptionFilter.java │ │ │ │ ├── PostFilter.java │ │ │ │ ├── PreFilter.java │ │ │ │ └── RouteFilter.java │ │ └── resources │ │ │ └── application.properties │ └── test │ │ └── java │ │ └── com │ │ └── app │ │ └── SpringCloudZuulGatewayZuulServerApplicationTests.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.app │ │ │ └── SpringCloud_ZuulGateway-ZuulServer │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── application.properties │ └── com │ │ └── app │ │ ├── SpringCloudZuulGatewayZuulServerApplication.class │ │ └── filters │ │ ├── ExceptionFilter.class │ │ ├── PostFilter.class │ │ ├── PreFilter.class │ │ └── RouteFilter.class │ └── test-classes │ └── com │ └── app │ └── SpringCloudZuulGatewayZuulServerApplicationTests.class ├── README.md ├── SpringBoot-Mail ├── HELP.md ├── mvnw ├── mvnw.cmd ├── pom.xml ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── app │ │ │ │ ├── SpringBootMailApplication.java │ │ │ │ ├── runner │ │ │ │ └── MailRunner.java │ │ │ │ └── util │ │ │ │ └── EmailUtil.java │ │ └── resources │ │ │ └── application.properties │ └── test │ │ └── java │ │ └── com │ │ └── app │ │ └── SpringBootMailApplicationTests.java └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.example │ │ │ └── SpringBoot-Mail │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── application.properties │ └── com │ │ └── app │ │ ├── SpringBootMailApplication.class │ │ ├── runner │ │ └── MailRunner.class │ │ └── util │ │ └── EmailUtil.class │ └── test-classes │ └── com │ └── app │ └── SpringBootMailApplicationTests.class ├── SpringBootApacheCamel ├── Apache-Camel-FileSystem-With-Process │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── app │ │ │ │ ├── ApacheCamelFileSystemWithProcessApplication.java │ │ │ │ └── camel │ │ │ │ └── RouterWithProcessor.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── app │ │ └── ApacheCamelFileSystemWithProcessApplicationTests.java └── Apache-Camel-FileSystem │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── destiFiles │ └── myData.txt │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── sourceFiles │ └── .camel │ │ └── myData.txt │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── app │ │ │ ├── ApacheCamelFileSystemApplication.java │ │ │ └── router │ │ │ └── MyRouter.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── app │ └── ApacheCamelFileSystemApplicationTests.java ├── SpringBootBatch ├── SpringBoot-Batch-CSV-to-Mysql-ORM │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── app │ │ │ │ ├── SpringBootBatchCsvToMysqlOrmApplication.java │ │ │ │ ├── config │ │ │ │ └── BatchConfig.java │ │ │ │ ├── model │ │ │ │ └── Product.java │ │ │ │ └── repo │ │ │ │ └── ProductRepository.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── products.csv │ │ └── test │ │ └── java │ │ └── com │ │ └── app │ │ └── SpringBootBatchCsvToMysqlOrmApplicationTests.java ├── SpringBoot-Batch-CSV-to-Mysql-jdbc │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── app │ │ │ │ ├── SpringBootBatchCsvToMysqlJdbcApplication.java │ │ │ │ ├── config │ │ │ │ └── BatchConfig.java │ │ │ │ └── model │ │ │ │ └── Product.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── products.csv │ │ └── test │ │ └── java │ │ └── com │ │ └── app │ │ └── SpringBootBatchCsvToMysqlJdbcApplicationTests.java ├── SpringBoot-Batch-IntroApp │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpingBatchingInfo.java │ │ │ │ │ ├── SpringBootBatchIntroAppApplication.java │ │ │ │ │ ├── config │ │ │ │ │ └── BatchConfig.java │ │ │ │ │ ├── listener │ │ │ │ │ └── MyJobListener.java │ │ │ │ │ ├── processor │ │ │ │ │ └── Processor.java │ │ │ │ │ ├── reader │ │ │ │ │ └── Reader.java │ │ │ │ │ ├── runner │ │ │ │ │ └── JobLauncherRunner.java │ │ │ │ │ └── writer │ │ │ │ │ └── Writer.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootBatchIntroAppApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringBoot-Batch-IntroApp │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ ├── SpingBatchingInfo.class │ │ │ ├── SpringBootBatchIntroAppApplication.class │ │ │ ├── config │ │ │ └── BatchConfig.class │ │ │ ├── listener │ │ │ └── MyJobListener.class │ │ │ ├── processor │ │ │ └── Processor.class │ │ │ ├── reader │ │ │ └── Reader.class │ │ │ ├── runner │ │ │ └── JobLauncherRunner.class │ │ │ └── writer │ │ │ └── Writer.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootBatchIntroAppApplicationTests.class ├── SpringBoot-Batch-Json-to-Mongo │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringBootBatchJsonToMongoApplication.java │ │ │ │ │ ├── config │ │ │ │ │ └── BatchConfig.java │ │ │ │ │ ├── document │ │ │ │ │ └── Product.java │ │ │ │ │ └── repo │ │ │ │ │ └── ProductRepository.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ └── product.json │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootBatchJsonToMongoApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.example │ │ │ │ └── SpringBoot-Batch-Json-to-Mongo │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ ├── com │ │ │ └── app │ │ │ │ ├── SpringBootBatchJsonToMongoApplication.class │ │ │ │ ├── config │ │ │ │ ├── BatchConfig$1.class │ │ │ │ ├── BatchConfig$2.class │ │ │ │ ├── BatchConfig$3.class │ │ │ │ └── BatchConfig.class │ │ │ │ ├── document │ │ │ │ └── Product.class │ │ │ │ └── repo │ │ │ │ └── ProductRepository.class │ │ └── product.json │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootBatchJsonToMongoApplicationTests.class ├── SpringBoot-Batch-MongoDb-to-Json │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringBootBatchMongoDbToJsonApplication.java │ │ │ │ │ ├── config │ │ │ │ │ └── BatchConfig.java │ │ │ │ │ └── document │ │ │ │ │ └── Product.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootBatchMongoDbToJsonApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.example │ │ │ │ └── SpringBoot-Batch-MongoDb-to-Json │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ ├── SpringBootBatchMongoDbToJsonApplication.class │ │ │ ├── config │ │ │ ├── BatchConfig$1.class │ │ │ ├── BatchConfig$2$1.class │ │ │ ├── BatchConfig$2.class │ │ │ └── BatchConfig.class │ │ │ └── document │ │ │ └── Product.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootBatchMongoDbToJsonApplicationTests.class ├── SpringBoot-Batch-Mysql-to-CSV-ORM │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── app │ │ │ │ ├── SpringBootBatchMysqlToCsvOrmApplication.java │ │ │ │ ├── config │ │ │ │ └── BatchConfig.java │ │ │ │ ├── model │ │ │ │ └── Product.java │ │ │ │ └── repo │ │ │ │ └── ProductRepository.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── products.csv │ │ └── test │ │ └── java │ │ └── com │ │ └── app │ │ └── SpringBootBatchCsvToMysqlOrmApplicationTests.java ├── SpringBoot-Batch-Mysql-to-csv-jdbc │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── app │ │ │ │ ├── SpringBootBatchMysqlToCsvJdbcApplication.java │ │ │ │ ├── config │ │ │ │ └── BatchConfig.java │ │ │ │ └── model │ │ │ │ └── Product.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── products.csv │ │ └── test │ │ └── java │ │ └── com │ │ └── app │ │ └── SpringBootBatchCsvToMysqlJdbcApplicationTests.java └── SpringBoot-Batch-csv-to-mysql-web │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── app │ │ │ ├── SpringBootBatchCsvToMysqlWebApplication.java │ │ │ ├── config │ │ │ └── BatchConfig.java │ │ │ ├── controller │ │ │ └── CustomerBatchController.java │ │ │ ├── model │ │ │ └── Customer.java │ │ │ └── repo │ │ │ └── CustomerRepository.java │ └── resources │ │ ├── application.properties │ │ ├── customers.csv │ │ └── templates │ │ └── show.html │ └── test │ └── java │ └── com │ └── app │ └── SpringBootBatchCsvToMysqlWebApplicationTests.java ├── SpringBootCore ├── ApplicationRunners │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ ├── MyStarter.java │ │ │ └── runners │ │ │ └── ConsoleRunner.java │ └── target │ │ └── classes │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── org.sathyatech │ │ │ └── ApplicationRunners │ │ │ ├── pom.properties │ │ │ └── pom.xml │ │ └── com │ │ └── app │ │ ├── MyStarter.class │ │ └── runners │ │ └── ConsoleRunner.class ├── CommandLineRunnerWithInputs │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ ├── StarterInput.java │ │ │ └── runners │ │ │ └── RunnerWithInput.java │ └── target │ │ └── classes │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── org.sathya │ │ │ └── SpringFirstAppManually │ │ │ ├── pom.properties │ │ │ └── pom.xml │ │ └── com │ │ └── app │ │ ├── StarterInput.class │ │ └── runners │ │ └── RunnerWithInput.class ├── CommandLineRunners │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── app │ │ │ │ ├── MyStarter.java │ │ │ │ └── runners │ │ │ │ ├── RunnerA.java │ │ │ │ └── RunnerB.java │ │ │ └── resources │ │ │ └── application.properties │ └── target │ │ └── classes │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── org.sathya │ │ │ └── SpringFirstAppManually │ │ │ ├── pom.properties │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ └── app │ │ ├── MyStarter.class │ │ └── runners │ │ ├── RunnerA.class │ │ └── RunnerB.class ├── CommandLineRunnersWithJavaConfig&Lambda │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ ├── MyStarter.java │ │ │ └── config │ │ │ └── AppConfig.java │ └── target │ │ └── classes │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── org.sathya │ │ │ └── SpringFirstAppManually │ │ │ ├── pom.properties │ │ │ └── pom.xml │ │ └── com │ │ └── app │ │ ├── MyStarter.class │ │ └── config │ │ ├── AppConfig$1.class │ │ └── AppConfig.class ├── ProjectLombokConstrucors │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── ProjectLambokConstrucorsApplication.java │ │ │ │ │ ├── model │ │ │ │ │ └── Project.java │ │ │ │ │ └── runner │ │ │ │ │ └── AppRunner.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── ProjectLambokConstrucorsApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── ProjectLambokConstrucors │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ ├── ProjectLambokConstrucorsApplication.class │ │ │ ├── model │ │ │ └── Project.class │ │ │ └── runner │ │ │ └── AppRunner.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── ProjectLambokConstrucorsApplicationTests.class ├── ProjectLombokExample │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── ProjectLambokExampleApplication.java │ │ │ │ │ ├── model │ │ │ │ │ └── Project.java │ │ │ │ │ └── runner │ │ │ │ │ └── AppRunner.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── demo │ │ │ └── ProjectLambokExampleApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── ProjectLambokExample │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ ├── ProjectLambokExampleApplication.class │ │ │ ├── model │ │ │ └── Project.class │ │ │ └── runner │ │ │ └── AppRunner.class │ │ └── test-classes │ │ └── com │ │ └── example │ │ └── demo │ │ └── ProjectLambokExampleApplicationTests.class ├── SpringBootProfiles-code_change-Example │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ ├── RunnersApplication.java │ │ │ │ │ ├── runner │ │ │ │ │ └── NotificationRunner.java │ │ │ │ │ └── service │ │ │ │ │ ├── INotificationService.java │ │ │ │ │ └── impl │ │ │ │ │ ├── DMLNotifactionServiceImpl.java │ │ │ │ │ ├── DefaultNotifactionServiceImpl.java │ │ │ │ │ └── HTCNotifactionServiceImpl.java │ │ │ └── resources │ │ │ │ └── application.yml │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── demo │ │ │ └── RunnersApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringBootProfiles │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.yml │ │ └── com │ │ │ └── example │ │ │ ├── RunnersApplication.class │ │ │ ├── runner │ │ │ └── NotificationRunner.class │ │ │ └── service │ │ │ ├── INotificationService.class │ │ │ └── impl │ │ │ ├── DMLNotifactionServiceImpl.class │ │ │ ├── DefaultNotifactionServiceImpl.class │ │ │ └── HTCNotifactionServiceImpl.class │ │ └── test-classes │ │ └── com │ │ └── example │ │ └── demo │ │ └── RunnersApplicationTests.class ├── SpringBootProfiles-include │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringBootProfilesInclude.java │ │ │ │ │ └── runner │ │ │ │ │ └── AppRunner.java │ │ │ └── resources │ │ │ │ ├── application-prod.properties │ │ │ │ ├── application-prodDb.properties │ │ │ │ ├── application-prodEmail.properties │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootProfilesMultiplePropertyFileApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringBootProfiles-multiple-propertyFile │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application-prod.properties │ │ ├── application-prodDb.properties │ │ ├── application-prodEmail.properties │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ ├── SpringBootProfilesInclude.class │ │ │ └── runner │ │ │ └── AppRunner.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootProfilesMultiplePropertyFileApplicationTests.class ├── SpringBootProfiles-multiple-property-OneYml │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringBootProfilesMultiplePropertyFileApplication.java │ │ │ │ │ └── runner │ │ │ │ │ └── AppRunner.java │ │ │ └── resources │ │ │ │ └── application.yml │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootProfilesMultiplePropertyFileApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringBootProfiles-multiple-propertyFile │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.yml │ │ └── com │ │ │ └── app │ │ │ ├── SpringBootProfilesMultiplePropertyFileApplication.class │ │ │ └── runner │ │ │ └── AppRunner.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootProfilesMultiplePropertyFileApplicationTests.class ├── SpringBootProfiles-multiple-propertyFile │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringBootProfilesMultiplePropertyFileApplication.java │ │ │ │ │ └── runner │ │ │ │ │ └── AppRunner.java │ │ │ └── resources │ │ │ │ ├── application-dev.properties │ │ │ │ ├── application-qa.yml │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootProfilesMultiplePropertyFileApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringBootProfiles-multiple-propertyFile │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application-dev.properties │ │ ├── application-qa.yml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ ├── SpringBootProfilesMultiplePropertyFileApplication.class │ │ │ └── runner │ │ │ └── AppRunner.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootProfilesMultiplePropertyFileApplicationTests.class ├── SpringBootProfiles-property_file-Example │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ └── SpringBootProfilesPropertyFileExampleApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootProfilesPropertyFileExampleApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringBootProfiles-property_file-Example │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ └── SpringBootProfilesPropertyFileExampleApplication.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootProfilesPropertyFileExampleApplicationTests.class ├── SpringBootProfiles-service-based-multiple-profiles │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringBootProfilesServiceBasedApplication.java │ │ │ │ │ └── service │ │ │ │ │ ├── EmailService.java │ │ │ │ │ └── SmsService.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootProfilesServiceBasedApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringBootProfiles-service-based │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ ├── SpringBootProfilesServiceBasedApplication.class │ │ │ └── service │ │ │ ├── EmailService.class │ │ │ └── SmsService.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootProfilesServiceBasedApplicationTests.class ├── SpringBootStarter-Configuration_Component │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ ├── app │ │ │ │ │ └── SpringBootConfigurationAndComponent.java │ │ │ │ │ └── one │ │ │ │ │ └── model │ │ │ │ │ ├── Customer.java │ │ │ │ │ └── Product.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootStarterClassSpringContainerApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringBootStarterClass-SpringContainer │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ ├── app │ │ │ └── SpringBootConfigurationAndComponent.class │ │ │ └── one │ │ │ └── model │ │ │ ├── Customer.class │ │ │ └── Product.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootStarterClassSpringContainerApplicationTests.class ├── SpringBootStarter-SpringContainer │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ └── SpringBootStarterClass1.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootStarterClassSpringContainerApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringBootStarterClass-SpringContainer │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ └── SpringBootStarterClass1.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootStarterClassSpringContainerApplicationTests.class ├── SpringBootStarter-autoLoadConfiguration │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ ├── app │ │ │ │ │ ├── SpringBootStarterAutoLoadConfigrationClass.java │ │ │ │ │ └── config │ │ │ │ │ │ ├── AppConfig1.java │ │ │ │ │ │ └── AppConfig2.java │ │ │ │ │ └── one │ │ │ │ │ └── model │ │ │ │ │ ├── Customer.java │ │ │ │ │ └── Product.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootStarterClassSpringContainerApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringBootStarterClass-SpringContainer │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ ├── app │ │ │ ├── SpringBootStarterAutoLoadConfigrationClass.class │ │ │ └── config │ │ │ │ ├── AppConfig1.class │ │ │ │ └── AppConfig2.class │ │ │ └── one │ │ │ └── model │ │ │ ├── Customer.class │ │ │ └── Product.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootStarterClassSpringContainerApplicationTests.class ├── SpringBootStarter-othside-basePackage │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ ├── app │ │ │ │ │ └── SpringBootStarterClassComponentScan.java │ │ │ │ │ └── one │ │ │ │ │ └── model │ │ │ │ │ ├── Customer.java │ │ │ │ │ └── Product.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootStarterClassSpringContainerApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringBootStarterClass-SpringContainer │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ ├── app │ │ │ └── SpringBootStarterClassComponentScan.class │ │ │ └── one │ │ │ └── model │ │ │ ├── Customer.class │ │ │ └── Product.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootStarterClassSpringContainerApplicationTests.class ├── SpringBootStarterClass-Banner-getAllBeans │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringBootStarterClassBannerGetAllBeansApplication.java │ │ │ │ │ └── model │ │ │ │ │ └── Product.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ └── banner.txt │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootStarterClassBannerGetAllBeansApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringBootStarterClass-Banner-getAllBeans │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ ├── banner.txt │ │ └── com │ │ │ └── app │ │ │ ├── SpringBootStarterClassBannerGetAllBeansApplication.class │ │ │ └── model │ │ │ └── Product.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootStarterClassBannerGetAllBeansApplicationTests.class └── SpringFirstAppManually │ ├── pom.xml │ ├── src │ └── main │ │ └── java │ │ └── com │ │ └── app │ │ └── MyStarter.java │ └── target │ └── classes │ ├── META-INF │ └── maven │ │ └── org.sathya │ │ └── SpringFirstAppManually │ │ ├── pom.properties │ │ └── pom.xml │ └── com │ └── app │ └── MyStarter.class ├── SpringBootDataJpa ├── SpringBoot-Embded-ApacheDerby │ ├── HELP.md │ ├── derby.log │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringBootEmbdedApaceDerbyApplication.java │ │ │ │ │ ├── model │ │ │ │ │ └── Product.java │ │ │ │ │ ├── repository │ │ │ │ │ └── ProductRepository.java │ │ │ │ │ └── runner │ │ │ │ │ └── ProductRunner.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootEmbdedApaceDerbyApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringBoot-Embded-ApacheDerby │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ ├── SpringBootEmbdedApaceDerbyApplication.class │ │ │ ├── model │ │ │ └── Product.class │ │ │ ├── repository │ │ │ └── ProductRepository.class │ │ │ └── runner │ │ │ └── ProductRunner.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootEmbdedApaceDerbyApplicationTests.class ├── SpringBootDataJpa-ConnectionPool │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringBootDataJpaConnectionPoolApplication.java │ │ │ │ │ ├── model │ │ │ │ │ └── Product.java │ │ │ │ │ ├── repo │ │ │ │ │ └── ProductRepository.java │ │ │ │ │ └── runner │ │ │ │ │ └── ProductRunner.java │ │ │ └── resources │ │ │ │ └── application.yml │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootDataJpaConnectionPoolApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringBootDataJpa-ConnectionPool │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.yml │ │ └── com │ │ │ └── app │ │ │ ├── SpringBootDataJpaConnectionPoolApplication.class │ │ │ ├── model │ │ │ └── Product.class │ │ │ ├── repo │ │ │ └── ProductRepository.class │ │ │ └── runner │ │ │ └── ProductRunner.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootDataJpaConnectionPoolApplicationTests.class ├── SpringBootDataJpa-Embded-H2Db │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringBootDataJpaEmbdedH2DbApplication.java │ │ │ │ │ ├── model │ │ │ │ │ └── Product.java │ │ │ │ │ ├── repository │ │ │ │ │ └── ProductRepository.java │ │ │ │ │ └── runner │ │ │ │ │ └── ProductRunner.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootDataJpaEmbdedH2DbApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringBootDataJpa-Embded-H2Db │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ ├── SpringBootDataJpaEmbdedH2DbApplication.class │ │ │ ├── model │ │ │ └── Product.class │ │ │ ├── repository │ │ │ └── ProductRepository.class │ │ │ └── runner │ │ │ └── ProductRunner.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootDataJpaEmbdedH2DbApplicationTests.class ├── SpringBootDataJpa-Mysql-CrudOperation │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringBootDataJpaMysqlCrudOperationApplication.java │ │ │ │ │ ├── model │ │ │ │ │ └── Product.java │ │ │ │ │ ├── repo │ │ │ │ │ └── ProductRepository.java │ │ │ │ │ └── runner │ │ │ │ │ └── ProductRunner.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ └── application.yml │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootDataJpaMysqlCrudOperationApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringBootDataJpa-Mysql-CrudOperation │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ ├── application.yml │ │ └── com │ │ │ └── app │ │ │ ├── SpringBootDataJpaMysqlCrudOperationApplication.class │ │ │ ├── model │ │ │ └── Product.class │ │ │ ├── repo │ │ │ └── ProductRepository.class │ │ │ └── runner │ │ │ └── ProductRunner.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootDataJpaMysqlCrudOperationApplicationTests.class ├── SpringBootDataJpa-Mysql-FindAllMethods │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringBootDataJpaMysqlFindAllMethodsApplication.java │ │ │ │ │ ├── model │ │ │ │ │ └── Product.java │ │ │ │ │ ├── repo │ │ │ │ │ └── ProductRepository.java │ │ │ │ │ └── runner │ │ │ │ │ └── ProductRunner.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootDataJpaMysqlFindAllMethodsApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringBootDataJpa-Mysql-FindAllMethods │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ ├── SpringBootDataJpaMysqlFindAllMethodsApplication.class │ │ │ ├── model │ │ │ └── Product.class │ │ │ ├── repo │ │ │ └── ProductRepository.class │ │ │ └── runner │ │ │ └── ProductRunner.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootDataJpaMysqlFindAllMethodsApplicationTests.class ├── SpringBootDataJpa-Mysql-FindBy-Projection │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringBootDataJpaMysqlFindByProjectionApplication.java │ │ │ │ │ ├── model │ │ │ │ │ └── Product.java │ │ │ │ │ ├── repo │ │ │ │ │ └── ProductRepository.java │ │ │ │ │ └── runner │ │ │ │ │ └── ProductRunner.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootDataJpaMysqlFindByProjectionApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringBootDataJpa-Mysql-FindBy-Projection │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ ├── SpringBootDataJpaMysqlFindByProjectionApplication.class │ │ │ ├── model │ │ │ └── Product.class │ │ │ ├── repo │ │ │ ├── ProductRepository$MyData.class │ │ │ ├── ProductRepository$MyView.class │ │ │ └── ProductRepository.class │ │ │ └── runner │ │ │ └── ProductRunner.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootDataJpaMysqlFindByProjectionApplicationTests.class ├── SpringBootDataJpa-Mysql-FindBy │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringBootDataJpaMysqlFindByApplication.java │ │ │ │ │ ├── model │ │ │ │ │ └── Product.java │ │ │ │ │ ├── repo │ │ │ │ │ └── ProductRepository.java │ │ │ │ │ └── runner │ │ │ │ │ └── ProductRunner.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootDataJpaMysqlFindByApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringBootDataJpa-Mysql-FindBy │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ ├── SpringBootDataJpaMysqlFindByApplication.class │ │ │ ├── model │ │ │ └── Product.class │ │ │ ├── repo │ │ │ └── ProductRepository.class │ │ │ └── runner │ │ │ └── ProductRunner.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootDataJpaMysqlFindByApplicationTests.class ├── SpringBootDataJpa-Mysql-QueryMethods │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringBootDataJpaMysqlQueryMethodsApplication.java │ │ │ │ │ ├── model │ │ │ │ │ └── Product.java │ │ │ │ │ ├── repo │ │ │ │ │ └── ProductRepository.java │ │ │ │ │ └── runner │ │ │ │ │ └── ProductRunner.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootDataJpaMysqlQueryMethodsApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.app │ │ │ │ └── SpringBootDataJpa-Mysql-QueryMethods │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ │ └── app │ │ │ ├── SpringBootDataJpaMysqlQueryMethodsApplication.class │ │ │ ├── model │ │ │ └── Product.class │ │ │ ├── repo │ │ │ └── ProductRepository.class │ │ │ └── runner │ │ │ └── ProductRunner.class │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootDataJpaMysqlQueryMethodsApplicationTests.class └── SpringBootDataJpa-Mysql-SpecialMethods │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── app │ │ │ │ ├── SpringBootDataJpaMysqlSpecialMethodsApplication.java │ │ │ │ ├── model │ │ │ │ └── Product.java │ │ │ │ ├── repo │ │ │ │ └── ProductRepository.java │ │ │ │ └── runner │ │ │ │ └── ProductRunner.java │ │ └── resources │ │ │ └── application.yml │ └── test │ │ └── java │ │ └── com │ │ └── app │ │ └── SpringBootDataJpaMysqlSpecialMethodsApplicationTests.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.app │ │ │ └── SpringBootDataJpa-Mysql-SpecialMethods │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── application.yml │ └── com │ │ └── app │ │ ├── SpringBootDataJpaMysqlSpecialMethodsApplication.class │ │ ├── model │ │ └── Product.class │ │ ├── repo │ │ └── ProductRepository.class │ │ └── runner │ │ └── ProductRunner.class │ └── test-classes │ └── com │ └── app │ └── SpringBootDataJpaMysqlSpecialMethodsApplicationTests.class ├── SpringBootMVC ├── SpringBoot-MVC-CacheManagement │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringBootMvcCacheManagementApplication.java │ │ │ │ │ ├── config │ │ │ │ │ ├── HazelCastCacheInfo.java │ │ │ │ │ └── MyConifgCache.java │ │ │ │ │ ├── controller │ │ │ │ │ └── CustomerController.java │ │ │ │ │ ├── model │ │ │ │ │ └── Customer.java │ │ │ │ │ ├── repo │ │ │ │ │ └── CustomerRepository.java │ │ │ │ │ ├── service │ │ │ │ │ ├── ICustomerService.java │ │ │ │ │ └── impl │ │ │ │ │ │ └── CustomerServiceImpl.java │ │ │ │ │ └── validator │ │ │ │ │ └── CustomerValidator.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ └── templates │ │ │ │ ├── Data.html │ │ │ │ ├── Register.html │ │ │ │ ├── Update.html │ │ │ │ └── View.html │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootMvcCacheManagementApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.example │ │ │ │ └── SpringBoot-MVC-CacheManagement │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ ├── com │ │ │ └── app │ │ │ │ ├── SpringBootMvcCacheManagementApplication.class │ │ │ │ ├── config │ │ │ │ ├── HazelCastCacheInfo.class │ │ │ │ └── MyConifgCache.class │ │ │ │ ├── controller │ │ │ │ └── CustomerController.class │ │ │ │ ├── model │ │ │ │ └── Customer.class │ │ │ │ ├── repo │ │ │ │ └── CustomerRepository.class │ │ │ │ ├── service │ │ │ │ ├── ICustomerService.class │ │ │ │ └── impl │ │ │ │ │ └── CustomerServiceImpl.class │ │ │ │ └── validator │ │ │ │ └── CustomerValidator.class │ │ └── templates │ │ │ ├── Data.html │ │ │ ├── Register.html │ │ │ ├── Update.html │ │ │ └── View.html │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootMvcCacheManagementApplicationTests.class ├── SpringBoot-MVC-Thymeleaf │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── mylog.log │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── app │ │ │ │ │ ├── SpringBootMvcThymeleafApplication.java │ │ │ │ │ ├── controller │ │ │ │ │ └── EmployeeController.java │ │ │ │ │ └── model │ │ │ │ │ └── Employee.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ └── templates │ │ │ │ ├── data.html │ │ │ │ ├── info.html │ │ │ │ └── register.html │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── app │ │ │ └── SpringBootMvcThymeleafApplicationTests.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.example │ │ │ │ └── SpringBoot-MVC-Thymeleaf │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ ├── com │ │ │ └── app │ │ │ │ ├── SpringBootMvcThymeleafApplication.class │ │ │ │ ├── controller │ │ │ │ └── EmployeeController.class │ │ │ │ └── model │ │ │ │ └── Employee.class │ │ └── templates │ │ │ ├── data.html │ │ │ ├── info.html │ │ │ └── register.html │ │ └── test-classes │ │ └── com │ │ └── app │ │ └── SpringBootMvcThymeleafApplicationTests.class ├── SpringBootMVC-1 │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── app │ │ │ │ ├── SpringBootMvc1Application.java │ │ │ │ └── controller │ │ │ │ └── MyController.java │ │ ├── resources │ │ │ └── application.properties │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── views │ │ │ └── home.jsp │ │ └── test │ │ └── java │ │ └── com │ │ └── app │ │ └── SpringBootMvc1ApplicationTests.java └── SpringBootMVC-Crud-Employee │ ├── HELP.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── app │ │ │ │ ├── SpringBootMvcCrudEmployeeApplication.java │ │ │ │ ├── controller │ │ │ │ └── EmployeeController.java │ │ │ │ ├── model │ │ │ │ └── Employee.java │ │ │ │ ├── repo │ │ │ │ └── EmployeeRepository.java │ │ │ │ └── service │ │ │ │ ├── EmployeeService.java │ │ │ │ └── impl │ │ │ │ └── EmployeeServiceImpl.java │ │ ├── resources │ │ │ └── application.properties │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── views │ │ │ ├── data.jsp │ │ │ ├── register.jsp │ │ │ └── view.jsp │ └── test │ │ └── java │ │ └── com │ │ └── app │ │ └── SpringBootMvcCrudEmployeeApplicationTests.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.example │ │ │ └── SpringBootMVC-Crud-Employee │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── application.properties │ └── com │ │ └── app │ │ ├── SpringBootMvcCrudEmployeeApplication.class │ │ ├── controller │ │ └── EmployeeController.class │ │ ├── model │ │ └── Employee.class │ │ ├── repo │ │ └── EmployeeRepository.class │ │ └── service │ │ ├── EmployeeService.class │ │ └── impl │ │ └── EmployeeServiceImpl.class │ └── test-classes │ └── com │ └── app │ └── SpringBootMvcCrudEmployeeApplicationTests.class └── SpringBootMongoDb ├── SpringBoot-MongoDB-DbOperations ├── HELP.md ├── mvnw ├── mvnw.cmd ├── pom.xml ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── app │ │ │ │ ├── SpringBootMongoDbDbOperationsApplication.java │ │ │ │ ├── document │ │ │ │ └── Employee.java │ │ │ │ ├── repository │ │ │ │ └── EmployeeRepository.java │ │ │ │ └── runner │ │ │ │ └── EmployeeRunner.java │ │ └── resources │ │ │ └── application.properties │ └── test │ │ └── java │ │ └── com │ │ └── app │ │ └── SpringBootMongoDbDbOperationsApplicationTests.java └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.app │ │ │ └── SpringBoot-MongoDB-DbOperations │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── application.properties │ └── com │ │ └── app │ │ ├── SpringBootMongoDbDbOperationsApplication.class │ │ ├── document │ │ └── Employee.class │ │ ├── repository │ │ └── EmployeeRepository.class │ │ └── runner │ │ └── EmployeeRunner.class │ └── test-classes │ └── com │ └── app │ └── SpringBootMongoDbDbOperationsApplicationTests.class ├── SpringBoot-MongoDB-Embded ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── app │ │ │ ├── SpringBootMongoDbEmbdedApplication.java │ │ │ ├── document │ │ │ └── Product.java │ │ │ ├── repository │ │ │ └── ProductRepository.java │ │ │ └── runner │ │ │ └── ProductRunner.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── app │ └── SpringBootMongoDbEmbdedApplicationTests.java ├── SpringBoot-MongoDB-External ├── HELP.md ├── mvnw ├── mvnw.cmd ├── pom.xml ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── app │ │ │ │ ├── SpringBootMongoDbExternalApplication.java │ │ │ │ ├── document │ │ │ │ └── Product.java │ │ │ │ ├── repository │ │ │ │ └── ProductRepository.java │ │ │ │ └── runner │ │ │ │ └── ProductRunner.java │ │ └── resources │ │ │ └── application.properties │ └── test │ │ └── java │ │ └── com │ │ └── app │ │ └── SpringBootMongoDbExternalApplicationTests.java └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.app │ │ │ └── SpringBoot-MongoDB-External │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── application.properties │ └── com │ │ └── app │ │ ├── SpringBootMongoDbExternalApplication.class │ │ ├── document │ │ └── Product.class │ │ ├── repository │ │ └── ProductRepository.class │ │ └── runner │ │ └── ProductRunner.class │ └── test-classes │ └── com │ └── app │ └── SpringBootMongoDbExternalApplicationTests.class └── SpringBoot-MongoDB-MultipleValues ├── HELP.md ├── mvnw ├── mvnw.cmd ├── pom.xml ├── src ├── main │ ├── java │ │ └── com │ │ │ └── app │ │ │ ├── SpringBootMongoDbExternalApplication.java │ │ │ ├── document │ │ │ ├── Address.java │ │ │ └── Employee.java │ │ │ ├── repository │ │ │ └── EmployeeRepository.java │ │ │ └── runner │ │ │ └── EmployeeRunner.java │ └── resources │ │ └── application.properties └── test │ └── java │ └── com │ └── app │ └── SpringBootMongoDbExternalApplicationTests.java └── target ├── classes ├── META-INF │ ├── MANIFEST.MF │ └── maven │ │ └── com.app │ │ └── SpringBoot-MongoDB-External │ │ ├── pom.properties │ │ └── pom.xml ├── application.properties └── com │ └── app │ ├── SpringBootMongoDbExternalApplication.class │ ├── document │ ├── Address.class │ └── Employee.class │ ├── repository │ └── EmployeeRepository.class │ └── runner │ └── EmployeeRunner.class └── test-classes └── com └── app └── SpringBootMongoDbExternalApplicationTests.class /MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Consumer/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: ActiveMQ-P2P-Consumer 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Build-Jdk-Spec: 1.8 5 | Created-By: Maven Integration for Eclipse 6 | 7 | -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Consumer/target/classes/META-INF/maven/com.app/ActiveMQ-P2P-Consumer/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Tue Aug 20 10:55:06 IST 2019 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.app 5 | m2e.projectName=ActiveMQ-P2P-Consumer 6 | m2e.projectLocation=C\:\\Users\\The_Incredible_Srv\\Documents\\spring\\springBoot\\MessageQueue\\ActiveMQ-P2P-Consumer 7 | artifactId=ActiveMQ-P2P-Consumer 8 | -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Consumer/target/classes/com/app/ActiveMqP2PConsumerApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Consumer/target/classes/com/app/ActiveMqP2PConsumerApplication.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Consumer/target/classes/com/app/message/MyMessage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Consumer/target/classes/com/app/message/MyMessage.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Consumer/target/classes/com/app/reciever/MyMessageReader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Consumer/target/classes/com/app/reciever/MyMessageReader.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Consumer/target/test-classes/com/app/ActiveMqP2PConsumerApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Consumer/target/test-classes/com/app/ActiveMqP2PConsumerApplicationTests.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Producer/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | # to connect with mom , connection factory url , activeMq works on Tcp not http 2 | spring.activemq.broker-url=tcp://localhost:61616 3 | spring.activemq.user=admin 4 | spring.activemq.password=admin 5 | # default false for P2P , true will be pub-sub 6 | spring.jms.pub-sub-domain=false 7 | -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Producer/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: ActiveMQ-P2P-Producer 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Build-Jdk-Spec: 1.8 5 | Created-By: Maven Integration for Eclipse 6 | 7 | -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Producer/target/classes/META-INF/maven/com.app/ActiveMQ-P2P-Producer/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Tue Aug 20 10:25:47 IST 2019 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.app 5 | m2e.projectName=ActiveMQ-P2P-Producer 6 | m2e.projectLocation=C\:\\Users\\The_Incredible_Srv\\Documents\\spring\\springBoot\\MessageQueue\\ActiveMQ-P2P-Producer 7 | artifactId=ActiveMQ-P2P-Producer 8 | -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Producer/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | # to connect with mom , connection factory url , activeMq works on Tcp not http 2 | spring.activemq.broker-url=tcp://localhost:61616 3 | spring.activemq.user=admin 4 | spring.activemq.password=admin 5 | # default false for P2P , true will be pub-sub 6 | spring.jms.pub-sub-domain=false 7 | -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Producer/target/classes/com/app/ActiveMqP2PProducerApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Producer/target/classes/com/app/ActiveMqP2PProducerApplication.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Producer/target/classes/com/app/message/MyMessage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Producer/target/classes/com/app/message/MyMessage.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Producer/target/classes/com/app/sender/MyMessageSender.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Producer/target/classes/com/app/sender/MyMessageSender.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Producer/target/test-classes/com/app/ActiveMqP2PProducerApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-P2P/ActiveMQ-P2P-Producer/target/test-classes/com/app/ActiveMqP2PProducerApplicationTests.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer1/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: ActiveMQ-Pub-Sub-Consumer1 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Build-Jdk-Spec: 1.8 5 | Created-By: Maven Integration for Eclipse 6 | 7 | -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer1/target/classes/com/app/ActiveMqPubSubConsumer1Application.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer1/target/classes/com/app/ActiveMqPubSubConsumer1Application.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer1/target/classes/com/app/message/MyMessage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer1/target/classes/com/app/message/MyMessage.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer1/target/classes/com/app/reciever/MyMessageReader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer1/target/classes/com/app/reciever/MyMessageReader.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer1/target/test-classes/com/app/ActiveMqPubSubConsumer1ApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer1/target/test-classes/com/app/ActiveMqPubSubConsumer1ApplicationTests.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer2/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: ActiveMQ-Pub-Sub-Consumer2 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Build-Jdk-Spec: 1.8 5 | Created-By: Maven Integration for Eclipse 6 | 7 | -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer2/target/classes/com/app/ActiveMqPubSubConsumer2Application.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer2/target/classes/com/app/ActiveMqPubSubConsumer2Application.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer2/target/classes/com/app/message/MyMessage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer2/target/classes/com/app/message/MyMessage.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer2/target/classes/com/app/reciever/MyMessageReader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer2/target/classes/com/app/reciever/MyMessageReader.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer2/target/test-classes/com/app/ActiveMqPubSubConsumer2ApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer2/target/test-classes/com/app/ActiveMqPubSubConsumer2ApplicationTests.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer3/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: ActiveMQ-Pub-Sub-Consumer3 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Build-Jdk-Spec: 1.8 5 | Created-By: Maven Integration for Eclipse 6 | 7 | -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer3/target/classes/com/app/ActiveMqPubSubConsumer3Application.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer3/target/classes/com/app/ActiveMqPubSubConsumer3Application.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer3/target/classes/com/app/message/MyMessage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer3/target/classes/com/app/message/MyMessage.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer3/target/classes/com/app/reciever/MyMessageReader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer3/target/classes/com/app/reciever/MyMessageReader.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer3/target/test-classes/com/app/ActiveMqPubSubConsumer3ApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Consumer3/target/test-classes/com/app/ActiveMqPubSubConsumer3ApplicationTests.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Producer/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | # to connect with mom , connection factory url , activeMq works on Tcp not http 2 | spring.activemq.broker-url=tcp://localhost:61616 3 | spring.activemq.user=admin 4 | spring.activemq.password=admin 5 | # default false for P2P , true will be pub-sub 6 | spring.jms.pub-sub-domain=true 7 | -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Producer/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: ActiveMQ-Pub-Sub-Producer 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Build-Jdk-Spec: 1.8 5 | Created-By: Maven Integration for Eclipse 6 | 7 | -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Producer/target/classes/META-INF/maven/com.app/ActiveMQ-Pub-Sub-Producer/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Tue Aug 20 13:01:06 IST 2019 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.app 5 | m2e.projectName=ActiveMQ-Pub-Sub-Producer 6 | m2e.projectLocation=C\:\\Users\\The_Incredible_Srv\\Documents\\spring\\springBoot\\MessageQueue\\ActiveMQ-Pub-Sub-Producer 7 | artifactId=ActiveMQ-Pub-Sub-Producer 8 | -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Producer/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | # to connect with mom , connection factory url , activeMq works on Tcp not http 2 | spring.activemq.broker-url=tcp://localhost:61616 3 | spring.activemq.user=admin 4 | spring.activemq.password=admin 5 | # default false for P2P , true will be pub-sub 6 | spring.jms.pub-sub-domain=true 7 | -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Producer/target/classes/com/app/ActiveMqPubSubProducerApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Producer/target/classes/com/app/ActiveMqPubSubProducerApplication.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Producer/target/classes/com/app/message/MyMessage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Producer/target/classes/com/app/message/MyMessage.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Producer/target/classes/com/app/sender/MyMessageSender.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Producer/target/classes/com/app/sender/MyMessageSender.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Producer/target/test-classes/com/app/ActiveMqPubSubProducerApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ-Pub-Sub/ActiveMQ-Pub-Sub-Producer/target/test-classes/com/app/ActiveMqPubSubProducerApplicationTests.class -------------------------------------------------------------------------------- /MessageQueue/ActiveMQ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/ActiveMQ.pdf -------------------------------------------------------------------------------- /MessageQueue/Apache Kafka.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/Apache Kafka.pdf -------------------------------------------------------------------------------- /MessageQueue/KafkaConsumer/Kafka-consumer-1/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/KafkaConsumer/Kafka-consumer-1/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /MessageQueue/KafkaConsumer/Kafka-consumer-1/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /MessageQueue/KafkaConsumer/Kafka-consumer-1/src/main/java/com/app/KafkaConsumer1Application.java: -------------------------------------------------------------------------------- 1 | package com.app; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class KafkaConsumer1Application { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(KafkaConsumer1Application.class, args); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /MessageQueue/KafkaConsumer/Kafka-consumer-2/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/KafkaConsumer/Kafka-consumer-2/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /MessageQueue/KafkaConsumer/Kafka-consumer-2/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /MessageQueue/KafkaConsumer/Kafka-consumer-2/src/main/java/com/app/KafkaConsumer2Application.java: -------------------------------------------------------------------------------- 1 | package com.app; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class KafkaConsumer2Application { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(KafkaConsumer2Application.class, args); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /MessageQueue/KafkaConsumer/Kafka-consumer-3/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/KafkaConsumer/Kafka-consumer-3/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /MessageQueue/KafkaConsumer/Kafka-consumer-3/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /MessageQueue/KafkaConsumer/Kafka-consumer-3/src/main/java/com/app/KafkaConsumer3Application.java: -------------------------------------------------------------------------------- 1 | package com.app; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class KafkaConsumer3Application { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(KafkaConsumer3Application.class, args); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /MessageQueue/KafkaProducer/Kafka-producer/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/MessageQueue/KafkaProducer/Kafka-producer/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /MessageQueue/KafkaProducer/Kafka-producer/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /MessageQueue/KafkaProducer/Kafka-producer/src/main/java/com/app/KafkaProducerApplication.java: -------------------------------------------------------------------------------- 1 | package com.app; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class KafkaProducerApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(KafkaProducerApplication.class, args); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /Microservices/Consumer-UsingRestTemplate-LegacyStyle/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=9090 -------------------------------------------------------------------------------- /Microservices/Consumer-UsingRestTemplate-LegacyStyle/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | server.port=9090 -------------------------------------------------------------------------------- /Microservices/Consumer-UsingRestTemplate-LegacyStyle/target/classes/com/app/ConsumerUsingRestTemplateLegacyStyleApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Consumer-UsingRestTemplate-LegacyStyle/target/classes/com/app/ConsumerUsingRestTemplateLegacyStyleApplication.class -------------------------------------------------------------------------------- /Microservices/Consumer-UsingRestTemplate-LegacyStyle/target/classes/com/app/consumer/ConsumerRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Consumer-UsingRestTemplate-LegacyStyle/target/classes/com/app/consumer/ConsumerRunner.class -------------------------------------------------------------------------------- /Microservices/Consumer-UsingRestTemplate-LegacyStyle/target/test-classes/com/app/ConsumerUsingRestTemplateLegacyStyleApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Consumer-UsingRestTemplate-LegacyStyle/target/test-classes/com/app/ConsumerUsingRestTemplateLegacyStyleApplicationTests.class -------------------------------------------------------------------------------- /Microservices/Parameters-in-webServices-Producer/src/main/java/com/app/model/Employee.java: -------------------------------------------------------------------------------- 1 | package com.app.model; 2 | 3 | import lombok.AllArgsConstructor; 4 | import lombok.Data; 5 | import lombok.NoArgsConstructor; 6 | 7 | @Data 8 | @NoArgsConstructor 9 | @AllArgsConstructor 10 | public class Employee { 11 | 12 | private Integer empId; 13 | private String empName; 14 | } 15 | -------------------------------------------------------------------------------- /Microservices/Parameters-in-webServices-Producer/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Microservices/Parameters-in-webServices-Producer/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Microservices/Parameters-in-webServices-Producer/target/classes/com/app/ParametersProiderApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Parameters-in-webServices-Producer/target/classes/com/app/ParametersProiderApplication.class -------------------------------------------------------------------------------- /Microservices/Parameters-in-webServices-Producer/target/classes/com/app/controller/EmployeeController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Parameters-in-webServices-Producer/target/classes/com/app/controller/EmployeeController.class -------------------------------------------------------------------------------- /Microservices/Parameters-in-webServices-Producer/target/classes/com/app/model/Employee.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Parameters-in-webServices-Producer/target/classes/com/app/model/Employee.class -------------------------------------------------------------------------------- /Microservices/Parameters-in-webServices-Producer/target/test-classes/com/app/ProviderRestLegacyStyleApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Parameters-in-webServices-Producer/target/test-classes/com/app/ProviderRestLegacyStyleApplicationTests.class -------------------------------------------------------------------------------- /Microservices/Provider-Crud-Rest-Mysql-Jpa/src/main/java/com/app/exception/ApiError.java: -------------------------------------------------------------------------------- 1 | package com.app.exception; 2 | 3 | import java.util.Date; 4 | 5 | import lombok.AllArgsConstructor; 6 | import lombok.Data; 7 | 8 | @Data 9 | @AllArgsConstructor 10 | public class ApiError { 11 | 12 | private Integer errorCode; 13 | private String errorDesc; 14 | private Date errorDate; 15 | } 16 | -------------------------------------------------------------------------------- /Microservices/Provider-Crud-Rest-Mysql-Jpa/src/main/java/com/app/exception/StudentNotFoundException.java: -------------------------------------------------------------------------------- 1 | package com.app.exception; 2 | 3 | public class StudentNotFoundException extends RuntimeException { 4 | 5 | 6 | private static final long serialVersionUID = -6298373885941900704L; 7 | 8 | 9 | public StudentNotFoundException(String s) 10 | { 11 | super(s); 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /Microservices/Provider-Crud-Rest-Mysql-Jpa/src/main/java/com/app/repo/StudentRepository.java: -------------------------------------------------------------------------------- 1 | package com.app.repo; 2 | 3 | import org.springframework.data.jpa.repository.JpaRepository; 4 | 5 | import com.app.model.Student; 6 | 7 | public interface StudentRepository extends JpaRepository { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Microservices/Provider-Crud-Rest-Mysql-Jpa/target/classes/META-INF/maven/com.app/Provider-Crud-Rest-Mysql-Jpa/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Wed Jul 31 12:02:56 IST 2019 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.app 5 | m2e.projectName=Provider-Crud-Rest-Mysql-Jpa 6 | m2e.projectLocation=C\:\\Users\\The_Incredible_Srv\\Documents\\spring\\springBoot\\Microservices\\Provider-Crud-Rest-Mysql-Jpa 7 | artifactId=Provider-Crud-Rest-Mysql-Jpa 8 | -------------------------------------------------------------------------------- /Microservices/Provider-Crud-Rest-Mysql-Jpa/target/classes/com/app/ProviderRestMysqlJpaApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Crud-Rest-Mysql-Jpa/target/classes/com/app/ProviderRestMysqlJpaApplication.class -------------------------------------------------------------------------------- /Microservices/Provider-Crud-Rest-Mysql-Jpa/target/classes/com/app/controller/RestExceptionHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Crud-Rest-Mysql-Jpa/target/classes/com/app/controller/RestExceptionHandler.class -------------------------------------------------------------------------------- /Microservices/Provider-Crud-Rest-Mysql-Jpa/target/classes/com/app/controller/StudentController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Crud-Rest-Mysql-Jpa/target/classes/com/app/controller/StudentController.class -------------------------------------------------------------------------------- /Microservices/Provider-Crud-Rest-Mysql-Jpa/target/classes/com/app/exception/ApiError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Crud-Rest-Mysql-Jpa/target/classes/com/app/exception/ApiError.class -------------------------------------------------------------------------------- /Microservices/Provider-Crud-Rest-Mysql-Jpa/target/classes/com/app/exception/StudentNotFoundException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Crud-Rest-Mysql-Jpa/target/classes/com/app/exception/StudentNotFoundException.class -------------------------------------------------------------------------------- /Microservices/Provider-Crud-Rest-Mysql-Jpa/target/classes/com/app/model/Student.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Crud-Rest-Mysql-Jpa/target/classes/com/app/model/Student.class -------------------------------------------------------------------------------- /Microservices/Provider-Crud-Rest-Mysql-Jpa/target/classes/com/app/repo/StudentRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Crud-Rest-Mysql-Jpa/target/classes/com/app/repo/StudentRepository.class -------------------------------------------------------------------------------- /Microservices/Provider-Crud-Rest-Mysql-Jpa/target/classes/com/app/service/IStudentService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Crud-Rest-Mysql-Jpa/target/classes/com/app/service/IStudentService.class -------------------------------------------------------------------------------- /Microservices/Provider-Crud-Rest-Mysql-Jpa/target/classes/com/app/service/impl/StudentServiceImple.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Crud-Rest-Mysql-Jpa/target/classes/com/app/service/impl/StudentServiceImple.class -------------------------------------------------------------------------------- /Microservices/Provider-Crud-Rest-Mysql-Jpa/target/test-classes/com/app/ProviderRestMysqlJpaApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Crud-Rest-Mysql-Jpa/target/test-classes/com/app/ProviderRestMysqlJpaApplicationTests.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-LegacyStyle/src/main/java/com/app/model/Employee.java: -------------------------------------------------------------------------------- 1 | package com.app.model; 2 | 3 | import lombok.AllArgsConstructor; 4 | import lombok.Data; 5 | import lombok.NoArgsConstructor; 6 | 7 | @Data 8 | @NoArgsConstructor 9 | @AllArgsConstructor 10 | public class Employee { 11 | 12 | private Integer empId; 13 | private String empName; 14 | } 15 | -------------------------------------------------------------------------------- /Microservices/Provider-Rest-LegacyStyle/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Microservices/Provider-Rest-LegacyStyle/target/classes/META-INF/maven/com.app/Provider-Rest-LegacyStyle/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Sun Jul 28 20:02:23 IST 2019 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.app 5 | m2e.projectName=Provider-Rest-LegacyStyle 6 | m2e.projectLocation=C\:\\Users\\The_Incredible_Srv\\Documents\\spring\\springBoot\\Microservices\\Provider-Rest-LegacyStyle 7 | artifactId=Provider-Rest-LegacyStyle 8 | -------------------------------------------------------------------------------- /Microservices/Provider-Rest-LegacyStyle/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Microservices/Provider-Rest-LegacyStyle/target/classes/com/app/ProviderRestLegacyStyleApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-LegacyStyle/target/classes/com/app/ProviderRestLegacyStyleApplication.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-LegacyStyle/target/classes/com/app/controller/EmployeeController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-LegacyStyle/target/classes/com/app/controller/EmployeeController.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-LegacyStyle/target/classes/com/app/model/Employee.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-LegacyStyle/target/classes/com/app/model/Employee.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-LegacyStyle/target/test-classes/com/app/ProviderRestLegacyStyleApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-LegacyStyle/target/test-classes/com/app/ProviderRestLegacyStyleApplicationTests.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/src/main/java/com/app/ProviderRestMysqlSwagger.java: -------------------------------------------------------------------------------- 1 | package com.app; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class ProviderRestMysqlSwagger { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(ProviderRestMysqlSwagger.class, args); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/src/main/java/com/app/exception/ApiError.java: -------------------------------------------------------------------------------- 1 | package com.app.exception; 2 | 3 | import java.util.Date; 4 | 5 | import lombok.AllArgsConstructor; 6 | import lombok.Data; 7 | 8 | @Data 9 | @AllArgsConstructor 10 | public class ApiError { 11 | 12 | private Integer errorCode; 13 | private String errorDesc; 14 | private Date errorDate; 15 | } 16 | -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/src/main/java/com/app/exception/CustomerNotFoundException.java: -------------------------------------------------------------------------------- 1 | package com.app.exception; 2 | 3 | public class CustomerNotFoundException extends RuntimeException{ 4 | 5 | private static final long serialVersionUID = 5905993208620365382L; 6 | 7 | public CustomerNotFoundException(String string) { 8 | 9 | super(string); 10 | } 11 | 12 | 13 | } 14 | -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/src/main/java/com/app/exception/EmployeeNotFoundException.java: -------------------------------------------------------------------------------- 1 | package com.app.exception; 2 | 3 | public class EmployeeNotFoundException extends RuntimeException { 4 | 5 | private static final long serialVersionUID = 625652365974134400L; 6 | 7 | public EmployeeNotFoundException(String s) { 8 | super(s); 9 | } 10 | 11 | } 12 | -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/src/main/java/com/app/exception/ItemNotFoundException.java: -------------------------------------------------------------------------------- 1 | package com.app.exception; 2 | 3 | public class ItemNotFoundException extends RuntimeException{ 4 | 5 | private static final long serialVersionUID = -684960463839293165L; 6 | 7 | public ItemNotFoundException(String string) { 8 | super(string); 9 | } 10 | 11 | } 12 | -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/src/main/java/com/app/exception/StudentNotFoundException.java: -------------------------------------------------------------------------------- 1 | package com.app.exception; 2 | 3 | public class StudentNotFoundException extends RuntimeException { 4 | 5 | 6 | private static final long serialVersionUID = -6298373885941900704L; 7 | 8 | 9 | public StudentNotFoundException(String s) 10 | { 11 | super(s); 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/src/main/java/com/app/repo/CustomerRepository.java: -------------------------------------------------------------------------------- 1 | package com.app.repo; 2 | 3 | import org.springframework.data.jpa.repository.JpaRepository; 4 | 5 | import com.app.model.Customer; 6 | 7 | public interface CustomerRepository extends JpaRepository { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/src/main/java/com/app/repo/EmployeeRepository.java: -------------------------------------------------------------------------------- 1 | package com.app.repo; 2 | 3 | import org.springframework.data.jpa.repository.JpaRepository; 4 | 5 | import com.app.model.Employee; 6 | 7 | public interface EmployeeRepository extends JpaRepository { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/src/main/java/com/app/repo/ItemRepository.java: -------------------------------------------------------------------------------- 1 | package com.app.repo; 2 | 3 | import org.springframework.data.jpa.repository.JpaRepository; 4 | 5 | import com.app.model.Item; 6 | 7 | public interface ItemRepository extends JpaRepository { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/src/main/java/com/app/repo/StudentRepository.java: -------------------------------------------------------------------------------- 1 | package com.app.repo; 2 | 3 | import org.springframework.data.jpa.repository.JpaRepository; 4 | 5 | import com.app.model.Student; 6 | 7 | public interface StudentRepository extends JpaRepository { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/ProviderRestMysqlSwagger.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/ProviderRestMysqlSwagger.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/config/SwaggerConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/config/SwaggerConfig.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/controller/rest/CustomerController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/controller/rest/CustomerController.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/controller/rest/EmployeeController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/controller/rest/EmployeeController.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/controller/rest/ItemController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/controller/rest/ItemController.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/controller/rest/RestExceptionHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/controller/rest/RestExceptionHandler.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/controller/rest/StudentController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/controller/rest/StudentController.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/exception/ApiError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/exception/ApiError.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/exception/CustomerNotFoundException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/exception/CustomerNotFoundException.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/exception/EmployeeNotFoundException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/exception/EmployeeNotFoundException.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/exception/ItemNotFoundException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/exception/ItemNotFoundException.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/exception/StudentNotFoundException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/exception/StudentNotFoundException.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/model/Customer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/model/Customer.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/model/Employee.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/model/Employee.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/model/Item.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/model/Item.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/model/Student.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/model/Student.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/repo/CustomerRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/repo/CustomerRepository.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/repo/EmployeeRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/repo/EmployeeRepository.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/repo/ItemRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/repo/ItemRepository.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/repo/StudentRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/repo/StudentRepository.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/service/ICustomerService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/service/ICustomerService.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/service/IEmployeeService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/service/IEmployeeService.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/service/IItemService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/service/IItemService.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/service/IStudentService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/service/IStudentService.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/service/impl/CustomerServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/service/impl/CustomerServiceImpl.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/service/impl/EmployeeServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/service/impl/EmployeeServiceImpl.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/service/impl/ItemServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/service/impl/ItemServiceImpl.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/service/impl/StudentServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/classes/com/app/service/impl/StudentServiceImpl.class -------------------------------------------------------------------------------- /Microservices/Provider-Rest-Mysql-Swagger/target/test-classes/com/app/ProviderRestMysqlJpaApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/Provider-Rest-Mysql-Swagger/target/test-classes/com/app/ProviderRestMysqlJpaApplicationTests.class -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigClinet-CartApp/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=9090 2 | # service id 3 | spring.application.name=CART-APP 4 | # service url 5 | eureka.client.service-url.default-zone=http://localhost:8761/eureka 6 | # for actuator , * for all services 7 | management.endpoints.web.exposure.include=* 8 | -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigClinet-CartApp/src/main/resources/bootstrap.properties: -------------------------------------------------------------------------------- 1 | # this file is used to give input to parent project 2 | # by default config serve runs on port 8888 and config client will search server with port 8888 only 3 | # if we have changed this port , then we use this file 4 | # otherwise by default it will go through below keys 5 | spring.cloud.config.uri=http://localhost:8888 -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigClinet-CartApp/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: SpringCloud_ConfigServer-ConfigClinet-CartApp 3 | Implementation-Version: 1.0 4 | Build-Jdk-Spec: 1.8 5 | Created-By: Maven Integration for Eclipse 6 | 7 | -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigClinet-CartApp/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | server.port=9090 2 | # service id 3 | spring.application.name=CART-APP 4 | # service url 5 | eureka.client.service-url.default-zone=http://localhost:8761/eureka 6 | # for actuator , * for all services 7 | management.endpoints.web.exposure.include=* 8 | -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigClinet-CartApp/target/classes/bootstrap.properties: -------------------------------------------------------------------------------- 1 | # this file is used to give input to parent project 2 | # by default config serve runs on port 8888 and config client will search server with port 8888 only 3 | # if we have changed this port , then we use this file 4 | # otherwise by default it will go through below keys 5 | spring.cloud.config.uri=http://localhost:8888 -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigClinet-CartApp/target/classes/com/app/SpringCloudConfigServerConfigClinetCartAppApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigClinet-CartApp/target/classes/com/app/SpringCloudConfigServerConfigClinetCartAppApplication.class -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigClinet-CartApp/target/classes/com/app/controller/CartRestController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigClinet-CartApp/target/classes/com/app/controller/CartRestController.class -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigClinet-CartApp/target/test-classes/com/app/SpringCloudConfigServerConfigClinetCartAppApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigClinet-CartApp/target/test-classes/com/app/SpringCloudConfigServerConfigClinetCartAppApplicationTests.class -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigServer-External/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | # recommonded port for config server 2 | server.port=8888 3 | # to tell to communicate with external i.e. on github server 4 | spring.cloud.config.server.git.uri=https://github.com/saurabh-vaish/ExternalConfigServer -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigServer-External/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: SpringCloud_ConfigServer-ConfigServer-External 3 | Implementation-Version: 1.0 4 | Build-Jdk-Spec: 1.8 5 | Created-By: Maven Integration for Eclipse 6 | 7 | -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigServer-External/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | # recommonded port for config server 2 | server.port=8888 3 | # to tell to communicate with external i.e. on github server 4 | spring.cloud.config.server.git.uri=https://github.com/saurabh-vaish/ExternalConfigServer -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigServer-External/target/classes/com/app/SpringCloudConfigServerConfigServerExternalApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigServer-External/target/classes/com/app/SpringCloudConfigServerConfigServerExternalApplication.class -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigServer-External/target/test-classes/com/app/SpringCloudConfigServerConfigServerExternalApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigServer-External/target/test-classes/com/app/SpringCloudConfigServerConfigServerExternalApplicationTests.class -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigServer-Native/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | # recommonded port for config server 2 | server.port=8888 3 | # to tell to communicate with native ie. app.prop inside folder system of project 4 | spring.profiles.active=native 5 | # location of external properties file i.e. in folder inside project so classpath 6 | spring.cloud.config.server.native.search-locations=classpath:/myConfig/ 7 | -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigServer-Native/src/main/resources/myConfig/application.properties: -------------------------------------------------------------------------------- 1 | # external properties file keys 2 | my.msg=hello from external native -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigServer-Native/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: SpringCloud_ConfigServer-ConfigServer 3 | Implementation-Version: 1.0 4 | Build-Jdk-Spec: 1.8 5 | Created-By: Maven Integration for Eclipse 6 | 7 | -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigServer-Native/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | # recommonded port for config server 2 | server.port=8888 3 | # to tell to communicate with native ie. app.prop inside folder system of project 4 | spring.profiles.active=native 5 | # location of external properties file i.e. in folder inside project so classpath 6 | spring.cloud.config.server.native.search-locations=classpath:/myConfig/ 7 | -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigServer-Native/target/classes/com/app/SpringCloudConfigServerConfigServerApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigServer-Native/target/classes/com/app/SpringCloudConfigServerConfigServerApplication.class -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigServer-Native/target/classes/myConfig/application.properties: -------------------------------------------------------------------------------- 1 | # external properties file keys 2 | my.msg=hello from external native -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigServer-Native/target/test-classes/com/app/SpringCloudConfigServerConfigServerApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-ConfigServer-Native/target/test-classes/com/app/SpringCloudConfigServerConfigServerApplicationTests.class -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-EurekaServer/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8761 2 | eureka.client.register-with-eureka=false 3 | eureka.client.fetch-registry=false -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-EurekaServer/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: SpringCloud_ConfigServer-EurekaServer 3 | Implementation-Version: 1.0 4 | Build-Jdk-Spec: 1.8 5 | Created-By: Maven Integration for Eclipse 6 | 7 | -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-EurekaServer/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8761 2 | eureka.client.register-with-eureka=false 3 | eureka.client.fetch-registry=false -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-EurekaServer/target/classes/com/app/SpringCloudConfigServerEurekaServerApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-EurekaServer/target/classes/com/app/SpringCloudConfigServerEurekaServerApplication.class -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-EurekaServer/target/test-classes/com/app/SpringCloudConfigServerEurekaServerApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudConfigServer/SpringCloud_ConfigServer-EurekaServer/target/test-classes/com/app/SpringCloudConfigServerEurekaServerApplicationTests.class -------------------------------------------------------------------------------- /Microservices/SpringCloudConfigServer/config server.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudConfigServer/config server.pdf -------------------------------------------------------------------------------- /Microservices/SpringCloudEureka/SpringCloud-Eureka-Consumer/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudEureka/SpringCloud-Eureka-Consumer/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Microservices/SpringCloudEureka/SpringCloud-Eureka-Consumer/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /Microservices/SpringCloudEureka/SpringCloud-Eureka-Provider/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudEureka/SpringCloud-Eureka-Provider/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Microservices/SpringCloudEureka/SpringCloud-Eureka-Provider/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /Microservices/SpringCloudEureka/SpringCloud-Eureka-Server/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudEureka/SpringCloud-Eureka-Server/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Microservices/SpringCloudEureka/SpringCloud-Eureka-Server/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /Microservices/SpringCloudFaultTolerence-CircuitBreaker/SpringCloud_FaultToleremce-Hystrix-EurekaServer/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8761 2 | eureka.client.fetch-registry=false 3 | eureka.client.register-with-eureka=false 4 | -------------------------------------------------------------------------------- /Microservices/SpringCloudFaultTolerence-CircuitBreaker/SpringCloud_FaultToleremce-Hystrix-EurekaServer/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: SpringCloud_FaultToleremce-Hystrix-EurekaSerer 3 | Implementation-Version: 1.0 4 | Build-Jdk-Spec: 1.8 5 | Created-By: Maven Integration for Eclipse 6 | 7 | -------------------------------------------------------------------------------- /Microservices/SpringCloudFaultTolerence-CircuitBreaker/SpringCloud_FaultToleremce-Hystrix-EurekaServer/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8761 2 | eureka.client.fetch-registry=false 3 | eureka.client.register-with-eureka=false 4 | -------------------------------------------------------------------------------- /Microservices/SpringCloudFaultTolerence-CircuitBreaker/SpringCloud_FaultToleremce-Hystrix-ExampleApp/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=9090 2 | #service id 3 | spring.application.name=EXAMPLE 4 | # service url 5 | eureka.client.service-url.default-zone=http://localhost:8761/eureka 6 | # for hystrix dashboard actuator endpoint 7 | management.endpoints.web.exposure.include=hystrix.stream , info 8 | 9 | -------------------------------------------------------------------------------- /Microservices/SpringCloudFaultTolerence-CircuitBreaker/SpringCloud_FaultToleremce-Hystrix-ExampleApp/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: SpringCloud_FaultToleremce-Hystrix-ExampleApp 3 | Implementation-Version: 1.0 4 | Build-Jdk-Spec: 1.8 5 | Created-By: Maven Integration for Eclipse 6 | 7 | -------------------------------------------------------------------------------- /Microservices/SpringCloudFaultTolerence-CircuitBreaker/SpringCloud_FaultToleremce-Hystrix-ExampleApp/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | server.port=9090 2 | #service id 3 | spring.application.name=EXAMPLE 4 | # service url 5 | eureka.client.service-url.default-zone=http://localhost:8761/eureka 6 | # for hystrix dashboard actuator endpoint 7 | management.endpoints.web.exposure.include=hystrix.stream , info 8 | 9 | -------------------------------------------------------------------------------- /Microservices/SpringCloudFaultTolerence-CircuitBreaker/SpringCloud_FaultToleremce-Hystrix-ExampleApp/target/classes/com/app/controller/ExampleRestController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudFaultTolerence-CircuitBreaker/SpringCloud_FaultToleremce-Hystrix-ExampleApp/target/classes/com/app/controller/ExampleRestController.class -------------------------------------------------------------------------------- /Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Consumer-Admin/src/main/java/com/app/model/Dept.java: -------------------------------------------------------------------------------- 1 | package com.app.model; 2 | 3 | import lombok.AllArgsConstructor; 4 | import lombok.Data; 5 | import lombok.NoArgsConstructor; 6 | 7 | @Data 8 | @NoArgsConstructor 9 | @AllArgsConstructor 10 | public class Dept { 11 | 12 | 13 | private Integer deptId; 14 | private String name; 15 | private String type; 16 | } 17 | -------------------------------------------------------------------------------- /Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Consumer-Admin/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: SpringCloud_FeignClient-Consumer-Admin 3 | Implementation-Version: 1.0 4 | Build-Jdk-Spec: 1.8 5 | Created-By: Maven Integration for Eclipse 6 | 7 | -------------------------------------------------------------------------------- /Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Consumer-Admin/target/classes/com/app/SpringCloudFeignClientConsumerAdminApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Consumer-Admin/target/classes/com/app/SpringCloudFeignClientConsumerAdminApplication.class -------------------------------------------------------------------------------- /Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Consumer-Admin/target/classes/com/app/consumer/DeptRestConsumer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Consumer-Admin/target/classes/com/app/consumer/DeptRestConsumer.class -------------------------------------------------------------------------------- /Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Consumer-Admin/target/classes/com/app/model/Dept.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Consumer-Admin/target/classes/com/app/model/Dept.class -------------------------------------------------------------------------------- /Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Consumer-Admin/target/classes/com/app/rest/controller/AdminRestController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Consumer-Admin/target/classes/com/app/rest/controller/AdminRestController.class -------------------------------------------------------------------------------- /Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Consumer-Admin/target/test-classes/com/app/SpringCloudFeignClientConsumerAdminApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Consumer-Admin/target/test-classes/com/app/SpringCloudFeignClientConsumerAdminApplicationTests.class -------------------------------------------------------------------------------- /Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-EurekaServer/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | # prevent eureka to register with itself 2 | eureka: 3 | client: 4 | fetch-registry: false 5 | register-with-eureka: false 6 | # server port 7 | server: 8 | port: 8761 9 | -------------------------------------------------------------------------------- /Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-EurekaServer/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: SpringCloud_FeignClient-EurekaServer 3 | Implementation-Version: 1.0 4 | Build-Jdk-Spec: 1.8 5 | Created-By: Maven Integration for Eclipse 6 | 7 | -------------------------------------------------------------------------------- /Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-EurekaServer/target/classes/application.yml: -------------------------------------------------------------------------------- 1 | # prevent eureka to register with itself 2 | eureka: 3 | client: 4 | fetch-registry: false 5 | register-with-eureka: false 6 | # server port 7 | server: 8 | port: 8761 9 | -------------------------------------------------------------------------------- /Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-EurekaServer/target/classes/com/app/SpringCloudFeignClientEurekaServerApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-EurekaServer/target/classes/com/app/SpringCloudFeignClientEurekaServerApplication.class -------------------------------------------------------------------------------- /Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-EurekaServer/target/test-classes/com/app/SpringCloudFeignClientEurekaServerApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-EurekaServer/target/test-classes/com/app/SpringCloudFeignClientEurekaServerApplicationTests.class -------------------------------------------------------------------------------- /Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Provider-Dept/src/main/java/com/app/model/Dept.java: -------------------------------------------------------------------------------- 1 | package com.app.model; 2 | 3 | import lombok.AllArgsConstructor; 4 | import lombok.Data; 5 | import lombok.NoArgsConstructor; 6 | 7 | @Data 8 | @NoArgsConstructor 9 | @AllArgsConstructor 10 | public class Dept { 11 | 12 | 13 | private Integer deptId; 14 | private String name; 15 | private String type; 16 | } 17 | -------------------------------------------------------------------------------- /Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Provider-Dept/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: SpringCloud_FeignClient-Provider-Dpet 3 | Implementation-Version: 1.0 4 | Build-Jdk-Spec: 1.8 5 | Created-By: Maven Integration for Eclipse 6 | 7 | -------------------------------------------------------------------------------- /Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Provider-Dept/target/classes/application.yml: -------------------------------------------------------------------------------- 1 | #server port 2 | server: 3 | port: 9091 4 | # service id 5 | spring: 6 | application: 7 | name: DEPT-PROVIDER 8 | # server url 9 | eureka: 10 | client: 11 | service-url: 12 | default-zone: http://localhost:8761/eureka 13 | # instance id 14 | instance: 15 | instance-id: ${spring.application.name}:${random.value} 16 | 17 | -------------------------------------------------------------------------------- /Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Provider-Dept/target/classes/com/app/SpringCloudFeignClientProviderDeptApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Provider-Dept/target/classes/com/app/SpringCloudFeignClientProviderDeptApplication.class -------------------------------------------------------------------------------- /Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Provider-Dept/target/classes/com/app/model/Dept.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Provider-Dept/target/classes/com/app/model/Dept.class -------------------------------------------------------------------------------- /Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Provider-Dept/target/classes/com/app/rest/controller/DeptRestController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Provider-Dept/target/classes/com/app/rest/controller/DeptRestController.class -------------------------------------------------------------------------------- /Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Provider-Dept/target/test-classes/com/app/SpringCloudFeignClientConsumerAdminApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudFeignClient/SpringCloud_FeignClient-Provider-Dept/target/test-classes/com/app/SpringCloudFeignClientConsumerAdminApplicationTests.class -------------------------------------------------------------------------------- /Microservices/SpringCloudLoadBalancerClient/SpringCloud_LoadBalancer-Eureka-Producer-Model/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudLoadBalancerClient/SpringCloud_LoadBalancer-Eureka-Producer-Model/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Microservices/SpringCloudLoadBalancerClient/SpringCloud_LoadBalancer-Eureka-Producer-Model/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /Microservices/SpringCloudLoadBalancerClient/SpringCloud_LoadBalancer-Eureka-Producer-Model/src/main/java/com/app/model/Employee.java: -------------------------------------------------------------------------------- 1 | package com.app.model; 2 | 3 | import lombok.AllArgsConstructor; 4 | import lombok.Data; 5 | import lombok.NoArgsConstructor; 6 | 7 | @Data 8 | @NoArgsConstructor 9 | @AllArgsConstructor 10 | public class Employee { 11 | 12 | private Integer id; 13 | private String name; 14 | private Double sal; 15 | } 16 | -------------------------------------------------------------------------------- /Microservices/SpringCloudLoadBalancerClient/SpringCloud_LoadBalancer-Eureka-Producer-Product/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudLoadBalancerClient/SpringCloud_LoadBalancer-Eureka-Producer-Product/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Microservices/SpringCloudLoadBalancerClient/SpringCloud_LoadBalancer-Eureka-Producer-Product/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /Microservices/SpringCloudLoadBalancerClient/SpringCloud_LoadBalancer-Eureka-Server/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudLoadBalancerClient/SpringCloud_LoadBalancer-Eureka-Server/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Microservices/SpringCloudLoadBalancerClient/SpringCloud_LoadBalancer-Eureka-Server/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /Microservices/SpringCloudLoadBalancerClient/SpringCloud_LoadBalancer-Eureka-Server/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | # eureka serer port 2 | server.port=8761 3 | # register with server false of eureka 4 | eureka.client.register-with-eureka=false 5 | # fetch regostery server false of eureka 6 | eureka.client.fetch-registry=false 7 | -------------------------------------------------------------------------------- /Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ConstomerApp/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8081 2 | # service id 3 | spring.application.name=CUST-APP 4 | # service url 5 | eureka.client.service-url.default-zone=http://localhost:8761/eureka 6 | # instances for load balancing 7 | eureka.instance.instance-id=${spring.application.name}:${random.value} 8 | -------------------------------------------------------------------------------- /Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ConstomerApp/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: SpringCloud_ZuulGateway-ConstomerApp 3 | Implementation-Version: 1.0 4 | Build-Jdk-Spec: 1.8 5 | Created-By: Maven Integration for Eclipse 6 | 7 | -------------------------------------------------------------------------------- /Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ConstomerApp/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8081 2 | # service id 3 | spring.application.name=CUST-APP 4 | # service url 5 | eureka.client.service-url.default-zone=http://localhost:8761/eureka 6 | # instances for load balancing 7 | eureka.instance.instance-id=${spring.application.name}:${random.value} 8 | -------------------------------------------------------------------------------- /Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ConstomerApp/target/classes/com/app/CustomerRestController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ConstomerApp/target/classes/com/app/CustomerRestController.class -------------------------------------------------------------------------------- /Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ConstomerApp/target/classes/com/app/SpringCloudZuulGatewayConstomerAppApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ConstomerApp/target/classes/com/app/SpringCloudZuulGatewayConstomerAppApplication.class -------------------------------------------------------------------------------- /Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ConstomerApp/target/test-classes/com/app/SpringCloudZuulGatewayConstomerAppApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ConstomerApp/target/test-classes/com/app/SpringCloudZuulGatewayConstomerAppApplicationTests.class -------------------------------------------------------------------------------- /Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-EurekaServer/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8761 2 | eureka.client.register-with-eureka=false 3 | eureka.client.fetch-registry=false 4 | -------------------------------------------------------------------------------- /Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-EurekaServer/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: SpringCloud_ZuulGateway-EurekaServer 3 | Implementation-Version: 1.0 4 | Build-Jdk-Spec: 1.8 5 | Created-By: Maven Integration for Eclipse 6 | 7 | -------------------------------------------------------------------------------- /Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-EurekaServer/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8761 2 | eureka.client.register-with-eureka=false 3 | eureka.client.fetch-registry=false 4 | -------------------------------------------------------------------------------- /Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-EurekaServer/target/classes/com/app/SpringCloudZuulGatewayEurekaServerApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-EurekaServer/target/classes/com/app/SpringCloudZuulGatewayEurekaServerApplication.class -------------------------------------------------------------------------------- /Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-EurekaServer/target/test-classes/com/app/SpringCloudZuulGatewayEurekaServerApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-EurekaServer/target/test-classes/com/app/SpringCloudZuulGatewayEurekaServerApplicationTests.class -------------------------------------------------------------------------------- /Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ZuulServer/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: SpringCloud_ZuulGateway-ZuulServer 3 | Implementation-Version: 1.0 4 | Build-Jdk-Spec: 1.8 5 | Created-By: Maven Integration for Eclipse 6 | 7 | -------------------------------------------------------------------------------- /Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ZuulServer/target/classes/com/app/SpringCloudZuulGatewayZuulServerApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ZuulServer/target/classes/com/app/SpringCloudZuulGatewayZuulServerApplication.class -------------------------------------------------------------------------------- /Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ZuulServer/target/classes/com/app/filters/ExceptionFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ZuulServer/target/classes/com/app/filters/ExceptionFilter.class -------------------------------------------------------------------------------- /Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ZuulServer/target/classes/com/app/filters/PostFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ZuulServer/target/classes/com/app/filters/PostFilter.class -------------------------------------------------------------------------------- /Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ZuulServer/target/classes/com/app/filters/PreFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ZuulServer/target/classes/com/app/filters/PreFilter.class -------------------------------------------------------------------------------- /Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ZuulServer/target/classes/com/app/filters/RouteFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ZuulServer/target/classes/com/app/filters/RouteFilter.class -------------------------------------------------------------------------------- /Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ZuulServer/target/test-classes/com/app/SpringCloudZuulGatewayZuulServerApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/Microservices/SpringCloudZuul/SpringCloud_ZuulGateway-ZuulServer/target/test-classes/com/app/SpringCloudZuulGatewayZuulServerApplicationTests.class -------------------------------------------------------------------------------- /SpringBoot-Mail/HELP.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | ### Reference Documentation 4 | For further reference, please consider the following sections: 5 | 6 | * [Official Apache Maven documentation](https://maven.apache.org/guides/index.html) 7 | 8 | -------------------------------------------------------------------------------- /SpringBoot-Mail/src/main/java/com/app/SpringBootMailApplication.java: -------------------------------------------------------------------------------- 1 | package com.app; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | @SpringBootApplication 7 | public class SpringBootMailApplication { 8 | 9 | public static void main(String[] args) { 10 | SpringApplication.run(SpringBootMailApplication.class, args); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /SpringBoot-Mail/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | ## Email properties ## 2 | spring.mail.host=smtp.gmail.com 3 | spring.mail.port=587 4 | spring.mail.username=srvjava93@gmail.com 5 | spring.mail.password=@project93 6 | spring.mail.properties.mail.smtp.auth=true 7 | spring.mail.properties.mail.smtp.starttls.enable=true -------------------------------------------------------------------------------- /SpringBoot-Mail/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: SpringBoot-Mail 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Built-By: The_Incredible_Srv 5 | Implementation-Vendor-Id: com.example 6 | Build-Jdk: 1.8.0_201 7 | Implementation-URL: https://projects.spring.io/spring-boot/#/spring-bo 8 | ot-starter-parent/SpringBoot-Mail 9 | Created-By: Maven Integration for Eclipse 10 | 11 | -------------------------------------------------------------------------------- /SpringBoot-Mail/target/classes/META-INF/maven/com.example/SpringBoot-Mail/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Tue Jul 02 11:14:51 IST 2019 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.example 5 | m2e.projectName=SpringBoot-Mail 6 | m2e.projectLocation=C\:\\Users\\The_Incredible_Srv\\Documents\\spring\\springBoot\\SpringBootMVC\\SpringBoot-Mail 7 | artifactId=SpringBoot-Mail 8 | -------------------------------------------------------------------------------- /SpringBoot-Mail/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | ## Email properties ## 2 | spring.mail.host=smtp.gmail.com 3 | spring.mail.port=587 4 | spring.mail.username=srvjava93@gmail.com 5 | spring.mail.password=@project93 6 | spring.mail.properties.mail.smtp.auth=true 7 | spring.mail.properties.mail.smtp.starttls.enable=true -------------------------------------------------------------------------------- /SpringBoot-Mail/target/classes/com/app/SpringBootMailApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBoot-Mail/target/classes/com/app/SpringBootMailApplication.class -------------------------------------------------------------------------------- /SpringBoot-Mail/target/classes/com/app/runner/MailRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBoot-Mail/target/classes/com/app/runner/MailRunner.class -------------------------------------------------------------------------------- /SpringBoot-Mail/target/classes/com/app/util/EmailUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBoot-Mail/target/classes/com/app/util/EmailUtil.class -------------------------------------------------------------------------------- /SpringBoot-Mail/target/test-classes/com/app/SpringBootMailApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBoot-Mail/target/test-classes/com/app/SpringBootMailApplicationTests.class -------------------------------------------------------------------------------- /SpringBootApacheCamel/Apache-Camel-FileSystem-With-Process/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootApacheCamel/Apache-Camel-FileSystem-With-Process/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBootApacheCamel/Apache-Camel-FileSystem-With-Process/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBootApacheCamel/Apache-Camel-FileSystem-With-Process/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | # to take control to main method instead of seprate thread 2 | camel.springboot.main-run-controller=true 3 | sourceFiles=file://J:/sourceFiles 4 | destiFiles=file://J:/destiFiles 5 | -------------------------------------------------------------------------------- /SpringBootApacheCamel/Apache-Camel-FileSystem/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootApacheCamel/Apache-Camel-FileSystem/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBootApacheCamel/Apache-Camel-FileSystem/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBootApacheCamel/Apache-Camel-FileSystem/destiFiles/myData.txt: -------------------------------------------------------------------------------- 1 | hiii hellloafter modified -------------------------------------------------------------------------------- /SpringBootApacheCamel/Apache-Camel-FileSystem/sourceFiles/.camel/myData.txt: -------------------------------------------------------------------------------- 1 | hiii hellloafter modified -------------------------------------------------------------------------------- /SpringBootApacheCamel/Apache-Camel-FileSystem/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | # to take control to main method instead of seprate thread 2 | camel.springboot.main-run-controller=true 3 | sourceFiles=file://J:/sourceFiles?noop=true 4 | destiFiles=file://J:/destiFiles -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-CSV-to-Mysql-ORM/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-CSV-to-Mysql-ORM/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-CSV-to-Mysql-ORM/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-CSV-to-Mysql-ORM/src/main/java/com/app/repo/ProductRepository.java: -------------------------------------------------------------------------------- 1 | package com.app.repo; 2 | 3 | import org.springframework.data.jpa.repository.JpaRepository; 4 | 5 | import com.app.model.Product; 6 | 7 | public interface ProductRepository extends JpaRepository { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-CSV-to-Mysql-ORM/src/main/resources/products.csv: -------------------------------------------------------------------------------- 1 | 10,PEN,650 2 | 11,CAR,350 3 | 12,CAP,210 4 | 13,BUS,110 5 | 14,TV,2100 -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-CSV-to-Mysql-jdbc/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-CSV-to-Mysql-jdbc/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-CSV-to-Mysql-jdbc/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-CSV-to-Mysql-jdbc/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.batch.job.enabled=false 2 | spring.batch.initialize-schema=always -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-CSV-to-Mysql-jdbc/src/main/resources/products.csv: -------------------------------------------------------------------------------- 1 | 10,PEN,650 2 | 11,CAR,350 3 | 12,CAP,210 -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-IntroApp/HELP.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | ### Reference Documentation 4 | For further reference, please consider the following sections: 5 | 6 | * [Official Apache Maven documentation](https://maven.apache.org/guides/index.html) 7 | 8 | ### Guides 9 | The following guides illustrate how to use some features concretely: 10 | 11 | * [Creating a Batch Service](https://spring.io/guides/gs/batch-processing/) 12 | 13 | -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-IntroApp/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | # to disable execution using annotation as job is already executing by joblauncher in runner 2 | spring.batch.job.enabled=false -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-IntroApp/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: SpringBoot-Batch-IntroApp 3 | Implementation-Version: 1.0 4 | Built-By: The_Incredible_Srv 5 | Implementation-Vendor-Id: com.app 6 | Build-Jdk: 1.8.0_201 7 | Implementation-URL: https://projects.spring.io/spring-boot/#/spring-bo 8 | ot-starter-parent/SpringBoot-Batch-IntroApp 9 | Created-By: Maven Integration for Eclipse 10 | 11 | -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-IntroApp/target/classes/META-INF/maven/com.app/SpringBoot-Batch-IntroApp/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Sat Jul 20 12:23:02 IST 2019 3 | version=1.0 4 | groupId=com.app 5 | m2e.projectName=SpringBoot-Batch-IntroApp 6 | m2e.projectLocation=C\:\\Users\\The_Incredible_Srv\\Documents\\spring\\springBoot\\springBootCore\\SpringBoot-Batch-IntroApp 7 | artifactId=SpringBoot-Batch-IntroApp 8 | -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-IntroApp/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | # to disable execution using annotation as job is already executing by joblauncher in runner 2 | spring.batch.job.enabled=false -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-IntroApp/target/classes/com/app/SpingBatchingInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-IntroApp/target/classes/com/app/SpingBatchingInfo.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-IntroApp/target/classes/com/app/SpringBootBatchIntroAppApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-IntroApp/target/classes/com/app/SpringBootBatchIntroAppApplication.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-IntroApp/target/classes/com/app/config/BatchConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-IntroApp/target/classes/com/app/config/BatchConfig.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-IntroApp/target/classes/com/app/listener/MyJobListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-IntroApp/target/classes/com/app/listener/MyJobListener.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-IntroApp/target/classes/com/app/processor/Processor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-IntroApp/target/classes/com/app/processor/Processor.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-IntroApp/target/classes/com/app/reader/Reader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-IntroApp/target/classes/com/app/reader/Reader.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-IntroApp/target/classes/com/app/runner/JobLauncherRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-IntroApp/target/classes/com/app/runner/JobLauncherRunner.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-IntroApp/target/classes/com/app/writer/Writer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-IntroApp/target/classes/com/app/writer/Writer.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-IntroApp/target/test-classes/com/app/SpringBootBatchIntroAppApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-IntroApp/target/test-classes/com/app/SpringBootBatchIntroAppApplicationTests.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-Json-to-Mongo/src/main/java/com/app/repo/ProductRepository.java: -------------------------------------------------------------------------------- 1 | package com.app.repo; 2 | 3 | import org.springframework.data.mongodb.repository.MongoRepository; 4 | 5 | import com.app.document.Product; 6 | 7 | public interface ProductRepository extends MongoRepository { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-Json-to-Mongo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.batch.job.enabled=false 2 | spring.data.mongodb.host=localhost 3 | spring.data.mongodb.port=27017 4 | spring.data.mongodb.database=springBoot 5 | spring.data.mongodb.username=root 6 | spring.data.mongodb.password=root 7 | -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-Json-to-Mongo/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | spring.batch.job.enabled=false 2 | spring.data.mongodb.host=localhost 3 | spring.data.mongodb.port=27017 4 | spring.data.mongodb.database=springBoot 5 | spring.data.mongodb.username=root 6 | spring.data.mongodb.password=root 7 | -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-Json-to-Mongo/target/classes/com/app/SpringBootBatchJsonToMongoApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-Json-to-Mongo/target/classes/com/app/SpringBootBatchJsonToMongoApplication.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-Json-to-Mongo/target/classes/com/app/config/BatchConfig$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-Json-to-Mongo/target/classes/com/app/config/BatchConfig$1.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-Json-to-Mongo/target/classes/com/app/config/BatchConfig$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-Json-to-Mongo/target/classes/com/app/config/BatchConfig$2.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-Json-to-Mongo/target/classes/com/app/config/BatchConfig$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-Json-to-Mongo/target/classes/com/app/config/BatchConfig$3.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-Json-to-Mongo/target/classes/com/app/config/BatchConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-Json-to-Mongo/target/classes/com/app/config/BatchConfig.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-Json-to-Mongo/target/classes/com/app/document/Product.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-Json-to-Mongo/target/classes/com/app/document/Product.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-Json-to-Mongo/target/classes/com/app/repo/ProductRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-Json-to-Mongo/target/classes/com/app/repo/ProductRepository.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-Json-to-Mongo/target/classes/product.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id":"10", 4 | "code":"PEN", 5 | "cost":"20.4" 6 | }, 7 | { 8 | "id":"11", 9 | "code":"BIKE", 10 | "cost":"40.45" 11 | }, 12 | { 13 | "id":"12", 14 | "code":"BUS", 15 | "cost":"200.24" 16 | }, 17 | { 18 | "id":"13", 19 | "code":"CAR", 20 | "cost":"110.4" 21 | }, 22 | { 23 | "id":"14", 24 | "code":"CAP", 25 | "cost":"30.4" 26 | } 27 | ] -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-Json-to-Mongo/target/test-classes/com/app/SpringBootBatchJsonToMongoApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-Json-to-Mongo/target/test-classes/com/app/SpringBootBatchJsonToMongoApplicationTests.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-MongoDb-to-Json/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.data.mongodb.host=localhost 2 | spring.data.mongodb.port=27017 3 | spring.data.mongodb.database=springBoot 4 | #spring.data.mongodb.username=root 5 | #spring.data.mongodb.password=root 6 | spring.batch.job.enabled=false 7 | -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-MongoDb-to-Json/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | spring.data.mongodb.host=localhost 2 | spring.data.mongodb.port=27017 3 | spring.data.mongodb.database=springBoot 4 | #spring.data.mongodb.username=root 5 | #spring.data.mongodb.password=root 6 | spring.batch.job.enabled=false 7 | -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-MongoDb-to-Json/target/classes/com/app/SpringBootBatchMongoDbToJsonApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-MongoDb-to-Json/target/classes/com/app/SpringBootBatchMongoDbToJsonApplication.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-MongoDb-to-Json/target/classes/com/app/config/BatchConfig$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-MongoDb-to-Json/target/classes/com/app/config/BatchConfig$1.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-MongoDb-to-Json/target/classes/com/app/config/BatchConfig$2$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-MongoDb-to-Json/target/classes/com/app/config/BatchConfig$2$1.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-MongoDb-to-Json/target/classes/com/app/config/BatchConfig$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-MongoDb-to-Json/target/classes/com/app/config/BatchConfig$2.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-MongoDb-to-Json/target/classes/com/app/config/BatchConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-MongoDb-to-Json/target/classes/com/app/config/BatchConfig.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-MongoDb-to-Json/target/classes/com/app/document/Product.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-MongoDb-to-Json/target/classes/com/app/document/Product.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-MongoDb-to-Json/target/test-classes/com/app/SpringBootBatchMongoDbToJsonApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-MongoDb-to-Json/target/test-classes/com/app/SpringBootBatchMongoDbToJsonApplicationTests.class -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-Mysql-to-CSV-ORM/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-Mysql-to-CSV-ORM/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-Mysql-to-CSV-ORM/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-Mysql-to-CSV-ORM/src/main/java/com/app/repo/ProductRepository.java: -------------------------------------------------------------------------------- 1 | package com.app.repo; 2 | 3 | import org.springframework.data.jpa.repository.JpaRepository; 4 | 5 | import com.app.model.Product; 6 | 7 | public interface ProductRepository extends JpaRepository { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-Mysql-to-CSV-ORM/src/main/resources/products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-Mysql-to-CSV-ORM/src/main/resources/products.csv -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-Mysql-to-csv-jdbc/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-Mysql-to-csv-jdbc/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-Mysql-to-csv-jdbc/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-Mysql-to-csv-jdbc/src/main/java/com/app/model/Product.java: -------------------------------------------------------------------------------- 1 | package com.app.model; 2 | 3 | import lombok.AllArgsConstructor; 4 | import lombok.Data; 5 | import lombok.NoArgsConstructor; 6 | 7 | // class to hold data for csv 8 | 9 | @Data 10 | @NoArgsConstructor 11 | @AllArgsConstructor 12 | public class Product { 13 | 14 | private Integer id; 15 | private String code; 16 | private Double cost; 17 | 18 | } 19 | -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-Mysql-to-csv-jdbc/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.batch.job.enabled=false 2 | spring.batch.initialize-schema=always -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-Mysql-to-csv-jdbc/src/main/resources/products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-Mysql-to-csv-jdbc/src/main/resources/products.csv -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-csv-to-mysql-web/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootBatch/SpringBoot-Batch-csv-to-mysql-web/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-csv-to-mysql-web/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-csv-to-mysql-web/src/main/java/com/app/repo/CustomerRepository.java: -------------------------------------------------------------------------------- 1 | package com.app.repo; 2 | 3 | import org.springframework.data.jpa.repository.JpaRepository; 4 | 5 | import com.app.model.Customer; 6 | 7 | public interface CustomerRepository extends JpaRepository { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SpringBootBatch/SpringBoot-Batch-csv-to-mysql-web/src/main/resources/customers.csv: -------------------------------------------------------------------------------- 1 | 100,Kyle,New Maryland,100.55 2 | 101,Kermit,Shawville,104.56 3 | 102,Cruz,Chanco,32.45 4 | 103,Rajah,Walhain,23.67 5 | 104,Kuame,Hofors,6.11 6 | 105,Jordan,Kamoke,822.45 7 | 106,Richard,Daska,10.56 8 | 107,James,Sangli,6.77 9 | 108,Charles,Wagga Wagga,711.0 -------------------------------------------------------------------------------- /SpringBootCore/ApplicationRunners/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: ApplicationRunners 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Built-By: The_Incredible_Srv 5 | Implementation-Vendor-Id: org.sathyatech 6 | Build-Jdk: 1.8.0_201 7 | Implementation-URL: https://projects.spring.io/spring-boot/#/spring-bo 8 | ot-starter-parent/ApplicationRunners 9 | Created-By: Maven Integration for Eclipse 10 | 11 | -------------------------------------------------------------------------------- /SpringBootCore/ApplicationRunners/target/classes/META-INF/maven/org.sathyatech/ApplicationRunners/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Mon Jun 03 17:05:45 IST 2019 3 | version=0.0.1-SNAPSHOT 4 | groupId=org.sathyatech 5 | m2e.projectName=ApplicationRunners 6 | m2e.projectLocation=C\:\\Users\\The_Incredible_Srv\\Documents\\spring\\springBoot\\ApplicationRunners 7 | artifactId=ApplicationRunners 8 | -------------------------------------------------------------------------------- /SpringBootCore/ApplicationRunners/target/classes/com/app/MyStarter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/ApplicationRunners/target/classes/com/app/MyStarter.class -------------------------------------------------------------------------------- /SpringBootCore/ApplicationRunners/target/classes/com/app/runners/ConsoleRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/ApplicationRunners/target/classes/com/app/runners/ConsoleRunner.class -------------------------------------------------------------------------------- /SpringBootCore/CommandLineRunnerWithInputs/target/classes/META-INF/maven/org.sathya/SpringFirstAppManually/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Mon Jun 03 10:40:28 IST 2019 3 | version=0.0.1-SNAPSHOT 4 | groupId=org.sathya 5 | m2e.projectName=CommandLineRunnerWithInputs 6 | m2e.projectLocation=C\:\\Users\\The_Incredible_Srv\\Documents\\spring\\springBoot\\CommandLineRunnerWithInputs 7 | artifactId=SpringFirstAppManually 8 | -------------------------------------------------------------------------------- /SpringBootCore/CommandLineRunnerWithInputs/target/classes/com/app/StarterInput.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/CommandLineRunnerWithInputs/target/classes/com/app/StarterInput.class -------------------------------------------------------------------------------- /SpringBootCore/CommandLineRunnerWithInputs/target/classes/com/app/runners/RunnerWithInput.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/CommandLineRunnerWithInputs/target/classes/com/app/runners/RunnerWithInput.class -------------------------------------------------------------------------------- /SpringBootCore/CommandLineRunners/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | debug=true 2 | -------------------------------------------------------------------------------- /SpringBootCore/CommandLineRunners/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: SpringFirstAppManually 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Built-By: The_Incredible_Srv 5 | Implementation-Vendor-Id: org.sathya 6 | Build-Jdk: 1.8.0_201 7 | Implementation-URL: https://projects.spring.io/spring-boot/#/spring-bo 8 | ot-starter-parent/SpringFirstAppManually 9 | Created-By: Maven Integration for Eclipse 10 | 11 | -------------------------------------------------------------------------------- /SpringBootCore/CommandLineRunners/target/classes/META-INF/maven/org.sathya/SpringFirstAppManually/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Mon Jun 03 10:40:05 IST 2019 3 | version=0.0.1-SNAPSHOT 4 | groupId=org.sathya 5 | m2e.projectName=CommandLineRunners 6 | m2e.projectLocation=C\:\\Users\\The_Incredible_Srv\\Documents\\spring\\springBoot\\CommandLineRunners 7 | artifactId=SpringFirstAppManually 8 | -------------------------------------------------------------------------------- /SpringBootCore/CommandLineRunners/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | debug=true 2 | -------------------------------------------------------------------------------- /SpringBootCore/CommandLineRunners/target/classes/com/app/MyStarter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/CommandLineRunners/target/classes/com/app/MyStarter.class -------------------------------------------------------------------------------- /SpringBootCore/CommandLineRunners/target/classes/com/app/runners/RunnerA.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/CommandLineRunners/target/classes/com/app/runners/RunnerA.class -------------------------------------------------------------------------------- /SpringBootCore/CommandLineRunners/target/classes/com/app/runners/RunnerB.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/CommandLineRunners/target/classes/com/app/runners/RunnerB.class -------------------------------------------------------------------------------- /SpringBootCore/CommandLineRunnersWithJavaConfig&Lambda/target/classes/com/app/MyStarter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/CommandLineRunnersWithJavaConfig&Lambda/target/classes/com/app/MyStarter.class -------------------------------------------------------------------------------- /SpringBootCore/CommandLineRunnersWithJavaConfig&Lambda/target/classes/com/app/config/AppConfig$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/CommandLineRunnersWithJavaConfig&Lambda/target/classes/com/app/config/AppConfig$1.class -------------------------------------------------------------------------------- /SpringBootCore/CommandLineRunnersWithJavaConfig&Lambda/target/classes/com/app/config/AppConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/CommandLineRunnersWithJavaConfig&Lambda/target/classes/com/app/config/AppConfig.class -------------------------------------------------------------------------------- /SpringBootCore/ProjectLombokConstrucors/HELP.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | ### Reference Documentation 4 | For further reference, please consider the following sections: 5 | 6 | * [Official Apache Maven documentation](https://maven.apache.org/guides/index.html) 7 | 8 | -------------------------------------------------------------------------------- /SpringBootCore/ProjectLombokConstrucors/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SpringBootCore/ProjectLombokConstrucors/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: ProjectLambokConstrucors 3 | Implementation-Version: 1.0 4 | Built-By: The_Incredible_Srv 5 | Implementation-Vendor-Id: com.app 6 | Build-Jdk: 1.8.0_201 7 | Implementation-URL: https://projects.spring.io/spring-boot/#/spring-bo 8 | ot-starter-parent/ProjectLambokConstrucors 9 | Created-By: Maven Integration for Eclipse 10 | 11 | -------------------------------------------------------------------------------- /SpringBootCore/ProjectLombokConstrucors/target/classes/META-INF/maven/com.app/ProjectLambokConstrucors/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Mon Jun 03 17:26:08 IST 2019 3 | version=1.0 4 | groupId=com.app 5 | m2e.projectName=ProjectLombokConstrucors 6 | m2e.projectLocation=C\:\\Users\\The_Incredible_Srv\\Documents\\spring\\springBoot\\ProjectLombokConstrucors 7 | artifactId=ProjectLambokConstrucors 8 | -------------------------------------------------------------------------------- /SpringBootCore/ProjectLombokConstrucors/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SpringBootCore/ProjectLombokConstrucors/target/classes/com/app/ProjectLambokConstrucorsApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/ProjectLombokConstrucors/target/classes/com/app/ProjectLambokConstrucorsApplication.class -------------------------------------------------------------------------------- /SpringBootCore/ProjectLombokConstrucors/target/classes/com/app/model/Project.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/ProjectLombokConstrucors/target/classes/com/app/model/Project.class -------------------------------------------------------------------------------- /SpringBootCore/ProjectLombokConstrucors/target/classes/com/app/runner/AppRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/ProjectLombokConstrucors/target/classes/com/app/runner/AppRunner.class -------------------------------------------------------------------------------- /SpringBootCore/ProjectLombokConstrucors/target/test-classes/com/app/ProjectLambokConstrucorsApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/ProjectLombokConstrucors/target/test-classes/com/app/ProjectLambokConstrucorsApplicationTests.class -------------------------------------------------------------------------------- /SpringBootCore/ProjectLombokExample/HELP.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | ### Reference Documentation 4 | For further reference, please consider the following sections: 5 | 6 | * [Official Apache Maven documentation](https://maven.apache.org/guides/index.html) 7 | 8 | -------------------------------------------------------------------------------- /SpringBootCore/ProjectLombokExample/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SpringBootCore/ProjectLombokExample/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: ProjectLambokExample 3 | Implementation-Version: 1.0 4 | Built-By: The_Incredible_Srv 5 | Implementation-Vendor-Id: com.app 6 | Build-Jdk: 1.8.0_201 7 | Implementation-URL: https://projects.spring.io/spring-boot/#/spring-bo 8 | ot-starter-parent/ProjectLambokExample 9 | Created-By: Maven Integration for Eclipse 10 | 11 | -------------------------------------------------------------------------------- /SpringBootCore/ProjectLombokExample/target/classes/META-INF/maven/com.app/ProjectLambokExample/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Mon Jun 03 17:26:10 IST 2019 3 | version=1.0 4 | groupId=com.app 5 | m2e.projectName=ProjectLombokExample 6 | m2e.projectLocation=C\:\\Users\\The_Incredible_Srv\\Documents\\spring\\springBoot\\ProjectLombokExample 7 | artifactId=ProjectLambokExample 8 | -------------------------------------------------------------------------------- /SpringBootCore/ProjectLombokExample/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SpringBootCore/ProjectLombokExample/target/classes/com/app/ProjectLambokExampleApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/ProjectLombokExample/target/classes/com/app/ProjectLambokExampleApplication.class -------------------------------------------------------------------------------- /SpringBootCore/ProjectLombokExample/target/classes/com/app/model/Project.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/ProjectLombokExample/target/classes/com/app/model/Project.class -------------------------------------------------------------------------------- /SpringBootCore/ProjectLombokExample/target/classes/com/app/runner/AppRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/ProjectLombokExample/target/classes/com/app/runner/AppRunner.class -------------------------------------------------------------------------------- /SpringBootCore/ProjectLombokExample/target/test-classes/com/example/demo/ProjectLambokExampleApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/ProjectLombokExample/target/test-classes/com/example/demo/ProjectLambokExampleApplicationTests.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-code_change-Example/HELP.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | ### Reference Documentation 4 | For further reference, please consider the following sections: 5 | 6 | * [Official Apache Maven documentation](https://maven.apache.org/guides/index.html) 7 | 8 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-code_change-Example/src/main/java/com/example/service/INotificationService.java: -------------------------------------------------------------------------------- 1 | package com.example.service; 2 | 3 | public interface INotificationService { 4 | 5 | public void notificate(); 6 | } 7 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-code_change-Example/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | spring: 2 | profiles: 3 | active: 4 | - dml 5 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-code_change-Example/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: Runners 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Built-By: The_Incredible_Srv 5 | Implementation-Vendor-Id: com.app 6 | Build-Jdk: 1.8.0_201 7 | Implementation-URL: https://projects.spring.io/spring-boot/#/spring-bo 8 | ot-starter-parent/SpringBootProfiles 9 | Created-By: Maven Integration for Eclipse 10 | 11 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-code_change-Example/target/classes/META-INF/maven/com.app/SpringBootProfiles/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Mon Jun 03 18:49:07 IST 2019 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.app 5 | m2e.projectName=SpringBootProfiles-code_change-Example 6 | m2e.projectLocation=C\:\\Users\\The_Incredible_Srv\\Documents\\spring\\springBoot\\SpringBootProfiles-code_change-Example 7 | artifactId=SpringBootProfiles 8 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-code_change-Example/target/classes/application.yml: -------------------------------------------------------------------------------- 1 | spring: 2 | profiles: 3 | active: 4 | - dml 5 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-code_change-Example/target/classes/com/example/RunnersApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-code_change-Example/target/classes/com/example/RunnersApplication.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-code_change-Example/target/classes/com/example/runner/NotificationRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-code_change-Example/target/classes/com/example/runner/NotificationRunner.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-code_change-Example/target/classes/com/example/service/INotificationService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-code_change-Example/target/classes/com/example/service/INotificationService.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-code_change-Example/target/classes/com/example/service/impl/DMLNotifactionServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-code_change-Example/target/classes/com/example/service/impl/DMLNotifactionServiceImpl.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-code_change-Example/target/classes/com/example/service/impl/DefaultNotifactionServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-code_change-Example/target/classes/com/example/service/impl/DefaultNotifactionServiceImpl.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-code_change-Example/target/classes/com/example/service/impl/HTCNotifactionServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-code_change-Example/target/classes/com/example/service/impl/HTCNotifactionServiceImpl.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-code_change-Example/target/test-classes/com/example/demo/RunnersApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-code_change-Example/target/test-classes/com/example/demo/RunnersApplicationTests.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-include/HELP.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | ### Reference Documentation 4 | For further reference, please consider the following sections: 5 | 6 | * [Official Apache Maven documentation](https://maven.apache.org/guides/index.html) 7 | 8 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-include/src/main/resources/application-prod.properties: -------------------------------------------------------------------------------- 1 | my.appname=Boot 2 | spring.profiles.include=prodDb,prodEmail -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-include/src/main/resources/application-prodDb.properties: -------------------------------------------------------------------------------- 1 | my.db.driver=mysql 2 | my.db.url=jdbc:mysql -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-include/src/main/resources/application-prodEmail.properties: -------------------------------------------------------------------------------- 1 | my.email.host=gmail 2 | my.email.port=589 -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-include/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.profiles.active=prod -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-include/target/classes/META-INF/maven/com.app/SpringBootProfiles-multiple-propertyFile/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Tue Jun 04 10:11:07 IST 2019 3 | version=1.0 4 | groupId=com.app 5 | m2e.projectName=SpringBootProfiles-include 6 | m2e.projectLocation=C\:\\Users\\The_Incredible_Srv\\Documents\\spring\\springBoot\\SpringBootProfiles-include 7 | artifactId=SpringBootProfiles-multiple-propertyFile 8 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-include/target/classes/application-prod.properties: -------------------------------------------------------------------------------- 1 | my.appname=Boot 2 | spring.profiles.include=prodDb,prodEmail -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-include/target/classes/application-prodDb.properties: -------------------------------------------------------------------------------- 1 | my.db.driver=mysql 2 | my.db.url=jdbc:mysql -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-include/target/classes/application-prodEmail.properties: -------------------------------------------------------------------------------- 1 | my.email.host=gmail 2 | my.email.port=589 -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-include/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | spring.profiles.active=prod -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-include/target/classes/com/app/SpringBootProfilesInclude.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-include/target/classes/com/app/SpringBootProfilesInclude.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-include/target/classes/com/app/runner/AppRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-include/target/classes/com/app/runner/AppRunner.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-include/target/test-classes/com/app/SpringBootProfilesMultiplePropertyFileApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-include/target/test-classes/com/app/SpringBootProfilesMultiplePropertyFileApplicationTests.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-multiple-property-OneYml/HELP.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | ### Reference Documentation 4 | For further reference, please consider the following sections: 5 | 6 | * [Official Apache Maven documentation](https://maven.apache.org/guides/index.html) 7 | 8 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-multiple-property-OneYml/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | spring: profiles: active: dev 2 | my: message: from default message 3 | code: from default code 4 | mode: from default mode --- spring: profiles: dev my: code: from dev code mode: from dev mode --- spring: profiles: qa my: message: from qa message mode: from qa mode -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-multiple-property-OneYml/target/classes/application.yml: -------------------------------------------------------------------------------- 1 | spring: profiles: active: dev 2 | my: message: from default message 3 | code: from default code 4 | mode: from default mode --- spring: profiles: dev my: code: from dev code mode: from dev mode --- spring: profiles: qa my: message: from qa message mode: from qa mode -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-multiple-property-OneYml/target/classes/com/app/SpringBootProfilesMultiplePropertyFileApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-multiple-property-OneYml/target/classes/com/app/SpringBootProfilesMultiplePropertyFileApplication.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-multiple-property-OneYml/target/classes/com/app/runner/AppRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-multiple-property-OneYml/target/classes/com/app/runner/AppRunner.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-multiple-property-OneYml/target/test-classes/com/app/SpringBootProfilesMultiplePropertyFileApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-multiple-property-OneYml/target/test-classes/com/app/SpringBootProfilesMultiplePropertyFileApplicationTests.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-multiple-propertyFile/HELP.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | ### Reference Documentation 4 | For further reference, please consider the following sections: 5 | 6 | * [Official Apache Maven documentation](https://maven.apache.org/guides/index.html) 7 | 8 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-multiple-propertyFile/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- 1 | my.code=from dev code 2 | my.mode=from dev mode -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-multiple-propertyFile/src/main/resources/application-qa.yml: -------------------------------------------------------------------------------- 1 | my: 2 | message: from qa message 3 | mode: from qa mode -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-multiple-propertyFile/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.profiles.active=dev 2 | my.message=from default message 3 | my.code=from default code 4 | my.mode=from default mode 5 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-multiple-propertyFile/target/classes/application-dev.properties: -------------------------------------------------------------------------------- 1 | my.code=from dev code 2 | my.mode=from dev mode -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-multiple-propertyFile/target/classes/application-qa.yml: -------------------------------------------------------------------------------- 1 | my: 2 | message: from qa message 3 | mode: from qa mode -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-multiple-propertyFile/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | spring.profiles.active=dev 2 | my.message=from default message 3 | my.code=from default code 4 | my.mode=from default mode 5 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-multiple-propertyFile/target/classes/com/app/SpringBootProfilesMultiplePropertyFileApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-multiple-propertyFile/target/classes/com/app/SpringBootProfilesMultiplePropertyFileApplication.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-multiple-propertyFile/target/classes/com/app/runner/AppRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-multiple-propertyFile/target/classes/com/app/runner/AppRunner.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-multiple-propertyFile/target/test-classes/com/app/SpringBootProfilesMultiplePropertyFileApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-multiple-propertyFile/target/test-classes/com/app/SpringBootProfilesMultiplePropertyFileApplicationTests.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-property_file-Example/HELP.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | ### Reference Documentation 4 | For further reference, please consider the following sections: 5 | 6 | * [Official Apache Maven documentation](https://maven.apache.org/guides/index.html) 7 | 8 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-property_file-Example/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-property_file-Example/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-property_file-Example/target/classes/com/app/SpringBootProfilesPropertyFileExampleApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-property_file-Example/target/classes/com/app/SpringBootProfilesPropertyFileExampleApplication.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-property_file-Example/target/test-classes/com/app/SpringBootProfilesPropertyFileExampleApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-property_file-Example/target/test-classes/com/app/SpringBootProfilesPropertyFileExampleApplicationTests.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-service-based-multiple-profiles/HELP.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | ### Reference Documentation 4 | For further reference, please consider the following sections: 5 | 6 | * [Official Apache Maven documentation](https://maven.apache.org/guides/index.html) 7 | 8 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-service-based-multiple-profiles/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.profiles.active=email,sms 2 | #or 3 | ## spring.profiles.active[0]=email 4 | ## spring.profiles.active[1]=sms 5 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-service-based-multiple-profiles/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | spring.profiles.active=email,sms 2 | #or 3 | ## spring.profiles.active[0]=email 4 | ## spring.profiles.active[1]=sms 5 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-service-based-multiple-profiles/target/classes/com/app/SpringBootProfilesServiceBasedApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-service-based-multiple-profiles/target/classes/com/app/SpringBootProfilesServiceBasedApplication.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-service-based-multiple-profiles/target/classes/com/app/service/EmailService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-service-based-multiple-profiles/target/classes/com/app/service/EmailService.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-service-based-multiple-profiles/target/classes/com/app/service/SmsService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-service-based-multiple-profiles/target/classes/com/app/service/SmsService.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootProfiles-service-based-multiple-profiles/target/test-classes/com/app/SpringBootProfilesServiceBasedApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootProfiles-service-based-multiple-profiles/target/test-classes/com/app/SpringBootProfilesServiceBasedApplicationTests.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-Configuration_Component/HELP.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | ### Reference Documentation 4 | For further reference, please consider the following sections: 5 | 6 | * [Official Apache Maven documentation](https://maven.apache.org/guides/index.html) 7 | 8 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-Configuration_Component/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-Configuration_Component/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-Configuration_Component/target/classes/com/app/SpringBootConfigurationAndComponent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootStarter-Configuration_Component/target/classes/com/app/SpringBootConfigurationAndComponent.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-Configuration_Component/target/classes/com/one/model/Customer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootStarter-Configuration_Component/target/classes/com/one/model/Customer.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-Configuration_Component/target/classes/com/one/model/Product.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootStarter-Configuration_Component/target/classes/com/one/model/Product.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-Configuration_Component/target/test-classes/com/app/SpringBootStarterClassSpringContainerApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootStarter-Configuration_Component/target/test-classes/com/app/SpringBootStarterClassSpringContainerApplicationTests.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-SpringContainer/HELP.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | ### Reference Documentation 4 | For further reference, please consider the following sections: 5 | 6 | * [Official Apache Maven documentation](https://maven.apache.org/guides/index.html) 7 | 8 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-SpringContainer/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-SpringContainer/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-SpringContainer/target/classes/com/app/SpringBootStarterClass1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootStarter-SpringContainer/target/classes/com/app/SpringBootStarterClass1.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-SpringContainer/target/test-classes/com/app/SpringBootStarterClassSpringContainerApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootStarter-SpringContainer/target/test-classes/com/app/SpringBootStarterClassSpringContainerApplicationTests.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-autoLoadConfiguration/HELP.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | ### Reference Documentation 4 | For further reference, please consider the following sections: 5 | 6 | * [Official Apache Maven documentation](https://maven.apache.org/guides/index.html) 7 | 8 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-autoLoadConfiguration/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-autoLoadConfiguration/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-autoLoadConfiguration/target/classes/com/app/SpringBootStarterAutoLoadConfigrationClass.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootStarter-autoLoadConfiguration/target/classes/com/app/SpringBootStarterAutoLoadConfigrationClass.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-autoLoadConfiguration/target/classes/com/app/config/AppConfig1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootStarter-autoLoadConfiguration/target/classes/com/app/config/AppConfig1.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-autoLoadConfiguration/target/classes/com/app/config/AppConfig2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootStarter-autoLoadConfiguration/target/classes/com/app/config/AppConfig2.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-autoLoadConfiguration/target/classes/com/one/model/Customer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootStarter-autoLoadConfiguration/target/classes/com/one/model/Customer.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-autoLoadConfiguration/target/classes/com/one/model/Product.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootStarter-autoLoadConfiguration/target/classes/com/one/model/Product.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-autoLoadConfiguration/target/test-classes/com/app/SpringBootStarterClassSpringContainerApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootStarter-autoLoadConfiguration/target/test-classes/com/app/SpringBootStarterClassSpringContainerApplicationTests.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-othside-basePackage/HELP.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | ### Reference Documentation 4 | For further reference, please consider the following sections: 5 | 6 | * [Official Apache Maven documentation](https://maven.apache.org/guides/index.html) 7 | 8 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-othside-basePackage/src/main/java/com/one/model/Customer.java: -------------------------------------------------------------------------------- 1 | package com.one.model; 2 | 3 | import org.springframework.stereotype.Service; 4 | 5 | @Service 6 | public class Customer { 7 | 8 | 9 | @Override 10 | public String toString() { 11 | return "Customer object created"; 12 | } 13 | 14 | 15 | 16 | } 17 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-othside-basePackage/src/main/java/com/one/model/Product.java: -------------------------------------------------------------------------------- 1 | package com.one.model; 2 | 3 | import org.springframework.stereotype.Component; 4 | 5 | @Component 6 | public class Product { 7 | 8 | 9 | @Override 10 | public String toString() { 11 | return "Product obj created"; 12 | } 13 | 14 | 15 | 16 | } 17 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-othside-basePackage/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-othside-basePackage/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-othside-basePackage/target/classes/com/app/SpringBootStarterClassComponentScan.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootStarter-othside-basePackage/target/classes/com/app/SpringBootStarterClassComponentScan.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-othside-basePackage/target/classes/com/one/model/Customer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootStarter-othside-basePackage/target/classes/com/one/model/Customer.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-othside-basePackage/target/classes/com/one/model/Product.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootStarter-othside-basePackage/target/classes/com/one/model/Product.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarter-othside-basePackage/target/test-classes/com/app/SpringBootStarterClassSpringContainerApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootStarter-othside-basePackage/target/test-classes/com/app/SpringBootStarterClassSpringContainerApplicationTests.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarterClass-Banner-getAllBeans/HELP.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | ### Reference Documentation 4 | For further reference, please consider the following sections: 5 | 6 | * [Official Apache Maven documentation](https://maven.apache.org/guides/index.html) 7 | 8 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarterClass-Banner-getAllBeans/src/main/java/com/app/model/Product.java: -------------------------------------------------------------------------------- 1 | package com.app.model; 2 | 3 | import org.springframework.stereotype.Component; 4 | 5 | @Component 6 | public class Product { 7 | 8 | 9 | 10 | } 11 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarterClass-Banner-getAllBeans/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarterClass-Banner-getAllBeans/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | ███████╗██████╗ ██╗ ██╗ 4 | ██╔════╝██╔══██╗██║ ██║ 5 | ███████╗██████╔╝██║ ██║ 6 | ╚════██║██╔══██╗╚██╗ ██╔╝ 7 | ███████║██║ ██║ ╚████╔╝ 8 | ╚══════╝╚═╝ ╚═╝ ╚═══╝ 9 | 10 | 11 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarterClass-Banner-getAllBeans/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarterClass-Banner-getAllBeans/target/classes/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | ███████╗██████╗ ██╗ ██╗ 4 | ██╔════╝██╔══██╗██║ ██║ 5 | ███████╗██████╔╝██║ ██║ 6 | ╚════██║██╔══██╗╚██╗ ██╔╝ 7 | ███████║██║ ██║ ╚████╔╝ 8 | ╚══════╝╚═╝ ╚═╝ ╚═══╝ 9 | 10 | 11 | -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarterClass-Banner-getAllBeans/target/classes/com/app/SpringBootStarterClassBannerGetAllBeansApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootStarterClass-Banner-getAllBeans/target/classes/com/app/SpringBootStarterClassBannerGetAllBeansApplication.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarterClass-Banner-getAllBeans/target/classes/com/app/model/Product.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootStarterClass-Banner-getAllBeans/target/classes/com/app/model/Product.class -------------------------------------------------------------------------------- /SpringBootCore/SpringBootStarterClass-Banner-getAllBeans/target/test-classes/com/app/SpringBootStarterClassBannerGetAllBeansApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringBootStarterClass-Banner-getAllBeans/target/test-classes/com/app/SpringBootStarterClassBannerGetAllBeansApplicationTests.class -------------------------------------------------------------------------------- /SpringBootCore/SpringFirstAppManually/target/classes/META-INF/maven/org.sathya/SpringFirstAppManually/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Mon May 20 19:30:09 IST 2019 3 | version=0.0.1-SNAPSHOT 4 | groupId=org.sathya 5 | m2e.projectName=SpringFirstAppManually 6 | m2e.projectLocation=C\:\\Users\\The_Incredible_Srv\\Documents\\spring\\springBoot\\SpringFirstAppManually 7 | artifactId=SpringFirstAppManually 8 | -------------------------------------------------------------------------------- /SpringBootCore/SpringFirstAppManually/target/classes/com/app/MyStarter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootCore/SpringFirstAppManually/target/classes/com/app/MyStarter.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBoot-Embded-ApacheDerby/HELP.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | ### Reference Documentation 4 | For further reference, please consider the following sections: 5 | 6 | * [Official Apache Maven documentation](https://maven.apache.org/guides/index.html) 7 | 8 | ### Guides 9 | The following guides illustrate how to use some features concretely: 10 | 11 | * [Accessing Data with JPA](https://spring.io/guides/gs/accessing-data-jpa/) 12 | 13 | -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBoot-Embded-ApacheDerby/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.jpa.show-sql=true 2 | spring.jpa.hibernate.ddl-auto=create-drop -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBoot-Embded-ApacheDerby/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | spring.jpa.show-sql=true 2 | spring.jpa.hibernate.ddl-auto=create-drop -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBoot-Embded-ApacheDerby/target/classes/com/app/SpringBootEmbdedApaceDerbyApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBoot-Embded-ApacheDerby/target/classes/com/app/SpringBootEmbdedApaceDerbyApplication.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBoot-Embded-ApacheDerby/target/classes/com/app/model/Product.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBoot-Embded-ApacheDerby/target/classes/com/app/model/Product.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBoot-Embded-ApacheDerby/target/classes/com/app/repository/ProductRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBoot-Embded-ApacheDerby/target/classes/com/app/repository/ProductRepository.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBoot-Embded-ApacheDerby/target/classes/com/app/runner/ProductRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBoot-Embded-ApacheDerby/target/classes/com/app/runner/ProductRunner.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBoot-Embded-ApacheDerby/target/test-classes/com/app/SpringBootEmbdedApaceDerbyApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBoot-Embded-ApacheDerby/target/test-classes/com/app/SpringBootEmbdedApaceDerbyApplicationTests.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-ConnectionPool/src/main/java/com/app/repo/ProductRepository.java: -------------------------------------------------------------------------------- 1 | package com.app.repo; 2 | 3 | import org.springframework.data.jpa.repository.JpaRepository; 4 | 5 | import com.app.model.Product; 6 | 7 | 8 | public interface ProductRepository extends JpaRepository { 9 | 10 | 11 | } 12 | -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-ConnectionPool/target/classes/com/app/SpringBootDataJpaConnectionPoolApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-ConnectionPool/target/classes/com/app/SpringBootDataJpaConnectionPoolApplication.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-ConnectionPool/target/classes/com/app/model/Product.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-ConnectionPool/target/classes/com/app/model/Product.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-ConnectionPool/target/classes/com/app/repo/ProductRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-ConnectionPool/target/classes/com/app/repo/ProductRepository.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-ConnectionPool/target/classes/com/app/runner/ProductRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-ConnectionPool/target/classes/com/app/runner/ProductRunner.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-ConnectionPool/target/test-classes/com/app/SpringBootDataJpaConnectionPoolApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-ConnectionPool/target/test-classes/com/app/SpringBootDataJpaConnectionPoolApplicationTests.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Embded-H2Db/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.jpa.show-sql=true 2 | spring.h2.console.enabled=true 3 | server.port=8080 4 | -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Embded-H2Db/target/classes/META-INF/maven/com.app/SpringBootDataJpa-Embded-H2Db/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Tue Jun 11 11:11:25 IST 2019 3 | version=1.0 4 | groupId=com.app 5 | m2e.projectName=SpringBootDataJpa-Embded-H2Db 6 | m2e.projectLocation=C\:\\Users\\The_Incredible_Srv\\Documents\\spring\\springBoot\\springCore\\SpringBootDataJpa-Embded-H2Db 7 | artifactId=SpringBootDataJpa-Embded-H2Db 8 | -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Embded-H2Db/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | spring.jpa.show-sql=true 2 | spring.h2.console.enabled=true 3 | server.port=8080 4 | -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Embded-H2Db/target/classes/com/app/SpringBootDataJpaEmbdedH2DbApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Embded-H2Db/target/classes/com/app/SpringBootDataJpaEmbdedH2DbApplication.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Embded-H2Db/target/classes/com/app/model/Product.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Embded-H2Db/target/classes/com/app/model/Product.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Embded-H2Db/target/classes/com/app/repository/ProductRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Embded-H2Db/target/classes/com/app/repository/ProductRepository.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Embded-H2Db/target/classes/com/app/runner/ProductRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Embded-H2Db/target/classes/com/app/runner/ProductRunner.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Embded-H2Db/target/test-classes/com/app/SpringBootDataJpaEmbdedH2DbApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Embded-H2Db/target/test-classes/com/app/SpringBootDataJpaEmbdedH2DbApplicationTests.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-CrudOperation/src/main/java/com/app/repo/ProductRepository.java: -------------------------------------------------------------------------------- 1 | package com.app.repo; 2 | 3 | import org.springframework.data.jpa.repository.JpaRepository; 4 | 5 | import com.app.model.Product; 6 | 7 | public interface ProductRepository extends JpaRepository { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-CrudOperation/target/classes/com/app/SpringBootDataJpaMysqlCrudOperationApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-CrudOperation/target/classes/com/app/SpringBootDataJpaMysqlCrudOperationApplication.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-CrudOperation/target/classes/com/app/model/Product.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-CrudOperation/target/classes/com/app/model/Product.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-CrudOperation/target/classes/com/app/repo/ProductRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-CrudOperation/target/classes/com/app/repo/ProductRepository.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-CrudOperation/target/classes/com/app/runner/ProductRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-CrudOperation/target/classes/com/app/runner/ProductRunner.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-CrudOperation/target/test-classes/com/app/SpringBootDataJpaMysqlCrudOperationApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-CrudOperation/target/test-classes/com/app/SpringBootDataJpaMysqlCrudOperationApplicationTests.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-FindAllMethods/src/main/java/com/app/repo/ProductRepository.java: -------------------------------------------------------------------------------- 1 | package com.app.repo; 2 | 3 | import org.springframework.data.jpa.repository.JpaRepository; 4 | 5 | import com.app.model.Product; 6 | 7 | public interface ProductRepository extends JpaRepository { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-FindAllMethods/target/classes/com/app/SpringBootDataJpaMysqlFindAllMethodsApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-FindAllMethods/target/classes/com/app/SpringBootDataJpaMysqlFindAllMethodsApplication.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-FindAllMethods/target/classes/com/app/model/Product.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-FindAllMethods/target/classes/com/app/model/Product.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-FindAllMethods/target/classes/com/app/repo/ProductRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-FindAllMethods/target/classes/com/app/repo/ProductRepository.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-FindAllMethods/target/classes/com/app/runner/ProductRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-FindAllMethods/target/classes/com/app/runner/ProductRunner.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-FindAllMethods/target/test-classes/com/app/SpringBootDataJpaMysqlFindAllMethodsApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-FindAllMethods/target/test-classes/com/app/SpringBootDataJpaMysqlFindAllMethodsApplicationTests.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy-Projection/target/classes/com/app/SpringBootDataJpaMysqlFindByProjectionApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy-Projection/target/classes/com/app/SpringBootDataJpaMysqlFindByProjectionApplication.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy-Projection/target/classes/com/app/model/Product.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy-Projection/target/classes/com/app/model/Product.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy-Projection/target/classes/com/app/repo/ProductRepository$MyData.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy-Projection/target/classes/com/app/repo/ProductRepository$MyData.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy-Projection/target/classes/com/app/repo/ProductRepository$MyView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy-Projection/target/classes/com/app/repo/ProductRepository$MyView.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy-Projection/target/classes/com/app/repo/ProductRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy-Projection/target/classes/com/app/repo/ProductRepository.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy-Projection/target/classes/com/app/runner/ProductRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy-Projection/target/classes/com/app/runner/ProductRunner.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy-Projection/target/test-classes/com/app/SpringBootDataJpaMysqlFindByProjectionApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy-Projection/target/test-classes/com/app/SpringBootDataJpaMysqlFindByProjectionApplicationTests.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy/target/classes/com/app/SpringBootDataJpaMysqlFindByApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy/target/classes/com/app/SpringBootDataJpaMysqlFindByApplication.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy/target/classes/com/app/model/Product.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy/target/classes/com/app/model/Product.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy/target/classes/com/app/repo/ProductRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy/target/classes/com/app/repo/ProductRepository.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy/target/classes/com/app/runner/ProductRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy/target/classes/com/app/runner/ProductRunner.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy/target/test-classes/com/app/SpringBootDataJpaMysqlFindByApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-FindBy/target/test-classes/com/app/SpringBootDataJpaMysqlFindByApplicationTests.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-QueryMethods/target/classes/com/app/SpringBootDataJpaMysqlQueryMethodsApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-QueryMethods/target/classes/com/app/SpringBootDataJpaMysqlQueryMethodsApplication.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-QueryMethods/target/classes/com/app/model/Product.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-QueryMethods/target/classes/com/app/model/Product.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-QueryMethods/target/classes/com/app/repo/ProductRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-QueryMethods/target/classes/com/app/repo/ProductRepository.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-QueryMethods/target/classes/com/app/runner/ProductRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-QueryMethods/target/classes/com/app/runner/ProductRunner.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-QueryMethods/target/test-classes/com/app/SpringBootDataJpaMysqlQueryMethodsApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-QueryMethods/target/test-classes/com/app/SpringBootDataJpaMysqlQueryMethodsApplicationTests.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-SpecialMethods/target/classes/com/app/SpringBootDataJpaMysqlSpecialMethodsApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-SpecialMethods/target/classes/com/app/SpringBootDataJpaMysqlSpecialMethodsApplication.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-SpecialMethods/target/classes/com/app/model/Product.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-SpecialMethods/target/classes/com/app/model/Product.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-SpecialMethods/target/classes/com/app/repo/ProductRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-SpecialMethods/target/classes/com/app/repo/ProductRepository.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-SpecialMethods/target/classes/com/app/runner/ProductRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-SpecialMethods/target/classes/com/app/runner/ProductRunner.class -------------------------------------------------------------------------------- /SpringBootDataJpa/SpringBootDataJpa-Mysql-SpecialMethods/target/test-classes/com/app/SpringBootDataJpaMysqlSpecialMethodsApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootDataJpa/SpringBootDataJpa-Mysql-SpecialMethods/target/test-classes/com/app/SpringBootDataJpaMysqlSpecialMethodsApplicationTests.class -------------------------------------------------------------------------------- /SpringBootMVC/SpringBoot-MVC-CacheManagement/src/main/java/com/app/repo/CustomerRepository.java: -------------------------------------------------------------------------------- 1 | package com.app.repo; 2 | 3 | import org.springframework.data.jpa.repository.JpaRepository; 4 | 5 | import com.app.model.Customer; 6 | 7 | public interface CustomerRepository extends JpaRepository 8 | { 9 | 10 | } 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /SpringBootMVC/SpringBoot-MVC-CacheManagement/target/classes/com/app/SpringBootMvcCacheManagementApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBoot-MVC-CacheManagement/target/classes/com/app/SpringBootMvcCacheManagementApplication.class -------------------------------------------------------------------------------- /SpringBootMVC/SpringBoot-MVC-CacheManagement/target/classes/com/app/config/HazelCastCacheInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBoot-MVC-CacheManagement/target/classes/com/app/config/HazelCastCacheInfo.class -------------------------------------------------------------------------------- /SpringBootMVC/SpringBoot-MVC-CacheManagement/target/classes/com/app/config/MyConifgCache.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBoot-MVC-CacheManagement/target/classes/com/app/config/MyConifgCache.class -------------------------------------------------------------------------------- /SpringBootMVC/SpringBoot-MVC-CacheManagement/target/classes/com/app/controller/CustomerController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBoot-MVC-CacheManagement/target/classes/com/app/controller/CustomerController.class -------------------------------------------------------------------------------- /SpringBootMVC/SpringBoot-MVC-CacheManagement/target/classes/com/app/model/Customer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBoot-MVC-CacheManagement/target/classes/com/app/model/Customer.class -------------------------------------------------------------------------------- /SpringBootMVC/SpringBoot-MVC-CacheManagement/target/classes/com/app/repo/CustomerRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBoot-MVC-CacheManagement/target/classes/com/app/repo/CustomerRepository.class -------------------------------------------------------------------------------- /SpringBootMVC/SpringBoot-MVC-CacheManagement/target/classes/com/app/service/ICustomerService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBoot-MVC-CacheManagement/target/classes/com/app/service/ICustomerService.class -------------------------------------------------------------------------------- /SpringBootMVC/SpringBoot-MVC-CacheManagement/target/classes/com/app/service/impl/CustomerServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBoot-MVC-CacheManagement/target/classes/com/app/service/impl/CustomerServiceImpl.class -------------------------------------------------------------------------------- /SpringBootMVC/SpringBoot-MVC-CacheManagement/target/classes/com/app/validator/CustomerValidator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBoot-MVC-CacheManagement/target/classes/com/app/validator/CustomerValidator.class -------------------------------------------------------------------------------- /SpringBootMVC/SpringBoot-MVC-CacheManagement/target/test-classes/com/app/SpringBootMvcCacheManagementApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBoot-MVC-CacheManagement/target/test-classes/com/app/SpringBootMvcCacheManagementApplicationTests.class -------------------------------------------------------------------------------- /SpringBootMVC/SpringBoot-MVC-Thymeleaf/src/main/java/com/app/model/Employee.java: -------------------------------------------------------------------------------- 1 | package com.app.model; 2 | 3 | import lombok.AllArgsConstructor; 4 | import lombok.Data; 5 | import lombok.NoArgsConstructor; 6 | 7 | @Data 8 | @AllArgsConstructor 9 | @NoArgsConstructor 10 | public class Employee { 11 | 12 | private Integer empId; 13 | private String empName; 14 | private Double empSal; 15 | } 16 | -------------------------------------------------------------------------------- /SpringBootMVC/SpringBoot-MVC-Thymeleaf/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=9090 2 | logging.file=mylog.log 3 | logging.pattern.console=[%M] %m %n 4 | logging.pattern.file=[%p] %d{dd:MM:yyy hh:mm:ss SSS} %C [%M] {%m} %n 5 | 6 | -------------------------------------------------------------------------------- /SpringBootMVC/SpringBoot-MVC-Thymeleaf/target/classes/META-INF/maven/com.example/SpringBoot-MVC-Thymeleaf/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Tue Jul 09 15:51:52 IST 2019 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.example 5 | m2e.projectName=SpringBoot-MVC-Thymeleaf 6 | m2e.projectLocation=C\:\\Users\\The_Incredible_Srv\\Documents\\spring\\springBoot\\SpringBootMVC\\SpringBoot-MVC-Thymeleaf 7 | artifactId=SpringBoot-MVC-Thymeleaf 8 | -------------------------------------------------------------------------------- /SpringBootMVC/SpringBoot-MVC-Thymeleaf/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | server.port=9090 2 | logging.file=mylog.log 3 | logging.pattern.console=[%M] %m %n 4 | logging.pattern.file=[%p] %d{dd:MM:yyy hh:mm:ss SSS} %C [%M] {%m} %n 5 | 6 | -------------------------------------------------------------------------------- /SpringBootMVC/SpringBoot-MVC-Thymeleaf/target/classes/com/app/SpringBootMvcThymeleafApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBoot-MVC-Thymeleaf/target/classes/com/app/SpringBootMvcThymeleafApplication.class -------------------------------------------------------------------------------- /SpringBootMVC/SpringBoot-MVC-Thymeleaf/target/classes/com/app/controller/EmployeeController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBoot-MVC-Thymeleaf/target/classes/com/app/controller/EmployeeController.class -------------------------------------------------------------------------------- /SpringBootMVC/SpringBoot-MVC-Thymeleaf/target/classes/com/app/model/Employee.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBoot-MVC-Thymeleaf/target/classes/com/app/model/Employee.class -------------------------------------------------------------------------------- /SpringBootMVC/SpringBoot-MVC-Thymeleaf/target/test-classes/com/app/SpringBootMvcThymeleafApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBoot-MVC-Thymeleaf/target/test-classes/com/app/SpringBootMvcThymeleafApplicationTests.class -------------------------------------------------------------------------------- /SpringBootMVC/SpringBootMVC-1/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBootMVC-1/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBootMVC/SpringBootMVC-1/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBootMVC/SpringBootMVC-1/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | ##server keys ## 2 | server.port=9999 3 | ## will be used as location (URI) ## 4 | server.servlet.context-path=/MyApp 5 | ## will be used to indentify server instance ## 6 | spring.application.name=/FirstApp 7 | ## spring keys ## 8 | spring.mvc.view.prefix=/WEB-INF/views/ 9 | spring.mvc.view.suffix=.jsp -------------------------------------------------------------------------------- /SpringBootMVC/SpringBootMVC-1/src/main/webapp/WEB-INF/views/home.jsp: -------------------------------------------------------------------------------- 1 |

Welcome to App

2 |

${msg}

-------------------------------------------------------------------------------- /SpringBootMVC/SpringBootMVC-Crud-Employee/src/main/java/com/app/repo/EmployeeRepository.java: -------------------------------------------------------------------------------- 1 | package com.app.repo; 2 | 3 | import org.springframework.data.jpa.repository.JpaRepository; 4 | 5 | import com.app.model.Employee; 6 | 7 | public interface EmployeeRepository extends JpaRepository { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SpringBootMVC/SpringBootMVC-Crud-Employee/target/classes/com/app/SpringBootMvcCrudEmployeeApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBootMVC-Crud-Employee/target/classes/com/app/SpringBootMvcCrudEmployeeApplication.class -------------------------------------------------------------------------------- /SpringBootMVC/SpringBootMVC-Crud-Employee/target/classes/com/app/controller/EmployeeController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBootMVC-Crud-Employee/target/classes/com/app/controller/EmployeeController.class -------------------------------------------------------------------------------- /SpringBootMVC/SpringBootMVC-Crud-Employee/target/classes/com/app/model/Employee.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBootMVC-Crud-Employee/target/classes/com/app/model/Employee.class -------------------------------------------------------------------------------- /SpringBootMVC/SpringBootMVC-Crud-Employee/target/classes/com/app/repo/EmployeeRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBootMVC-Crud-Employee/target/classes/com/app/repo/EmployeeRepository.class -------------------------------------------------------------------------------- /SpringBootMVC/SpringBootMVC-Crud-Employee/target/classes/com/app/service/EmployeeService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBootMVC-Crud-Employee/target/classes/com/app/service/EmployeeService.class -------------------------------------------------------------------------------- /SpringBootMVC/SpringBootMVC-Crud-Employee/target/classes/com/app/service/impl/EmployeeServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBootMVC-Crud-Employee/target/classes/com/app/service/impl/EmployeeServiceImpl.class -------------------------------------------------------------------------------- /SpringBootMVC/SpringBootMVC-Crud-Employee/target/test-classes/com/app/SpringBootMvcCrudEmployeeApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMVC/SpringBootMVC-Crud-Employee/target/test-classes/com/app/SpringBootMvcCrudEmployeeApplicationTests.class -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-DbOperations/src/main/java/com/app/repository/EmployeeRepository.java: -------------------------------------------------------------------------------- 1 | package com.app.repository; 2 | 3 | import org.springframework.data.mongodb.repository.MongoRepository; 4 | 5 | import com.app.document.Employee; 6 | 7 | public interface EmployeeRepository extends MongoRepository { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-DbOperations/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.data.mongodb.host=localhost 2 | spring.data.mongodb.port=27017 3 | spring.data.mongodb.database=springBoot 4 | spring.data.mongodb.username=root 5 | spring.data.mongodb.password=root 6 | -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-DbOperations/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | spring.data.mongodb.host=localhost 2 | spring.data.mongodb.port=27017 3 | spring.data.mongodb.database=springBoot 4 | spring.data.mongodb.username=root 5 | spring.data.mongodb.password=root 6 | -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-DbOperations/target/classes/com/app/SpringBootMongoDbDbOperationsApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMongoDb/SpringBoot-MongoDB-DbOperations/target/classes/com/app/SpringBootMongoDbDbOperationsApplication.class -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-DbOperations/target/classes/com/app/document/Employee.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMongoDb/SpringBoot-MongoDB-DbOperations/target/classes/com/app/document/Employee.class -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-DbOperations/target/classes/com/app/repository/EmployeeRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMongoDb/SpringBoot-MongoDB-DbOperations/target/classes/com/app/repository/EmployeeRepository.class -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-DbOperations/target/classes/com/app/runner/EmployeeRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMongoDb/SpringBoot-MongoDB-DbOperations/target/classes/com/app/runner/EmployeeRunner.class -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-DbOperations/target/test-classes/com/app/SpringBootMongoDbDbOperationsApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMongoDb/SpringBoot-MongoDB-DbOperations/target/test-classes/com/app/SpringBootMongoDbDbOperationsApplicationTests.class -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-Embded/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMongoDb/SpringBoot-MongoDB-Embded/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-Embded/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip 2 | -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-Embded/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-External/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.data.mongodb.host=localhost 2 | spring.data.mongodb.port=27017 3 | spring.data.mongodb.database=springBoot 4 | ## by default authentication is disabled in mongodb 5 | ##spring.data.mongodb.username=root 6 | ##spring.data.mongodb.password=root 7 | -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-External/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | spring.data.mongodb.host=localhost 2 | spring.data.mongodb.port=27017 3 | spring.data.mongodb.database=springBoot 4 | ## by default authentication is disabled in mongodb 5 | ##spring.data.mongodb.username=root 6 | ##spring.data.mongodb.password=root 7 | -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-External/target/classes/com/app/SpringBootMongoDbExternalApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMongoDb/SpringBoot-MongoDB-External/target/classes/com/app/SpringBootMongoDbExternalApplication.class -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-External/target/classes/com/app/document/Product.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMongoDb/SpringBoot-MongoDB-External/target/classes/com/app/document/Product.class -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-External/target/classes/com/app/repository/ProductRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMongoDb/SpringBoot-MongoDB-External/target/classes/com/app/repository/ProductRepository.class -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-External/target/classes/com/app/runner/ProductRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMongoDb/SpringBoot-MongoDB-External/target/classes/com/app/runner/ProductRunner.class -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-External/target/test-classes/com/app/SpringBootMongoDbExternalApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMongoDb/SpringBoot-MongoDB-External/target/test-classes/com/app/SpringBootMongoDbExternalApplicationTests.class -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-MultipleValues/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.data.mongodb.host=localhost 2 | spring.data.mongodb.port=27017 3 | spring.data.mongodb.database=springBoot 4 | ## by default authentication is disabled in mongodb 5 | spring.data.mongodb.username=root 6 | spring.data.mongodb.password=root 7 | -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-MultipleValues/target/classes/application.properties: -------------------------------------------------------------------------------- 1 | spring.data.mongodb.host=localhost 2 | spring.data.mongodb.port=27017 3 | spring.data.mongodb.database=springBoot 4 | ## by default authentication is disabled in mongodb 5 | spring.data.mongodb.username=root 6 | spring.data.mongodb.password=root 7 | -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-MultipleValues/target/classes/com/app/SpringBootMongoDbExternalApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMongoDb/SpringBoot-MongoDB-MultipleValues/target/classes/com/app/SpringBootMongoDbExternalApplication.class -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-MultipleValues/target/classes/com/app/document/Address.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMongoDb/SpringBoot-MongoDB-MultipleValues/target/classes/com/app/document/Address.class -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-MultipleValues/target/classes/com/app/document/Employee.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMongoDb/SpringBoot-MongoDB-MultipleValues/target/classes/com/app/document/Employee.class -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-MultipleValues/target/classes/com/app/repository/EmployeeRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMongoDb/SpringBoot-MongoDB-MultipleValues/target/classes/com/app/repository/EmployeeRepository.class -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-MultipleValues/target/classes/com/app/runner/EmployeeRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMongoDb/SpringBoot-MongoDB-MultipleValues/target/classes/com/app/runner/EmployeeRunner.class -------------------------------------------------------------------------------- /SpringBootMongoDb/SpringBoot-MongoDB-MultipleValues/target/test-classes/com/app/SpringBootMongoDbExternalApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-vaish/SpringBoot/a5aa56c71b08a47625c6a7f6ce2836f6a9c0591b/SpringBootMongoDb/SpringBoot-MongoDB-MultipleValues/target/test-classes/com/app/SpringBootMongoDbExternalApplicationTests.class --------------------------------------------------------------------------------