Spring boot change jar name

Spring boot change jar name

Table of Contents1. Overview2.1 Maven2.1.1 Add <finalName> tag inside configuration (pom.xml)2.1.2 Add <finalName> tag inside <build> (pom.xml)2.1.3 Add version in the file name (pom.xml)2.2 Gradle2.2.1 Add jar.archiveName inside build.gradle file. (build.gradle)2.2.2 Add version in a…

Spring boot startup failure analyzer example

Spring boot startup failure analyzer example

Table of Contents1. OverviewStep to Configure startup failed analyzer2. Example2.1 pom.xml2.2 application.properties2.3 spring.factories2.4 CustomFailedAnalyzer2.5 SpringBootConfig2.6 Output3. Conclusion4. References5. Source Code 1. Overview In this article, We are going to discuss about how…

Spring boot database cache example

Spring boot database cache example

Table of Contents1. OverviewSteps to configure spring caching:1. Add Spring Cache Dependency2. Enable Caching3. Cache & Clear value4. Disable Cache2. Example2.1 pom.xml2.2 application.properties2.3 SpringBootConfig2.4 EmployeeService2.5 EmployeeServiceImpl2.6 EmployeeDAO2.7 EmployeeController2.8 EmployeeDemo3. Conclusion4….

Spring boot Gradle Example

Spring boot Gradle Example

Table of Contents1. Overview2. Example2.1 build.gradle2.2 application.properties2.3 SpringBootApplication2.4 DemoControllerClean & Build Gradle Spring Boot ApplicationRun Spring boot Application3. Conclusion4. References5. Source Code 1. Overview In this article, We are going…

Solr Set Default Search Field Example

Solr Default Search Field Example

Table of Contents1. Overview2. Configuration3. Example3.1. Query3.2 debug Query Output3.3 Output4. Conclusion5. References 1. Overview Solr provide facility to set default search field, the user can set most used field…

solr proximity search example

Solr Proximity Search Example

Table of Contents1. Overview2. How it works3. Syntax4. Examples4.1 Query4.2 Output4.3 Query4.4 Output5. Conclusion6. References 1. Overview Proximity Search is an extension of phrase search, In phrase search, two query…