Spring boot ConfigurationProperties Example

Spring boot @ConfigurationProperties Example

Table of Contents1. Overview2. Example2.1 application.properties2.2 AppProperties2.3 ApplicationService2.4 AppPropertiesController2.5 pom.xml2.6 Output3. References 1. Overview Spring boot provide @ConfigurationProperties annotation using that we can read application properties easily. Please note that application.properties…

Spring boot read application properties

Spring boot read application properties

Table of Contents1. Overview2. Example1. Spring boot read application properties using Environment1.1 application.properties1.2 ApplicationService1.3 Output:2. Spring boot read application properties using @Value annotation2.1 application.properties2.2 ApplicationService2.3 Output:3.Conclusion3. References: 1. Overview application.properties file contains…

Solr Regular expression

Solr Regular expression part-2

Solr support regular expression search support.The Solr/Lucene regular expression engine is not Perl-compatible but supports a smaller range of operators. In previous article solr-regular-expression-part-1 we have discussed some of the basic…

Solr Regular expression

Solr Regular expression part-1

Solr support regular expression search support.The Solr/Lucene regular expression engine is not Perl-compatible but supports a smaller range of operators. Here we discussed some of the standard operators that solr/lucene…

Spring boot RestTemplate Example

Spring boot RestTemplate Example

Table of Contents1. Overview2. Example2.1 RestTemplate Get method Example2.2 RestTemplate Get method with Parameter Example2.3 RestTemplate Get method with Parameter in Path Example2.3 RestTemplate POST method example2.4 RestTemplate Read headers3….

spring boot form submit example

spring boot form submit example

Table of Contents1. Overview2. Example2.1 pom.xml2.2 application.properties2.3 SpringBootConfig2.4 EmployeeController2.5 employeeFrom.jsp2.6 viewDetails.jsp2.7 Output4. References5. Source Code 1. Overview This article contains spring boot form submit example using JSP. The form has…