SOLR TUTORIAL

Solr Tutorial

This article contains Solr tutorial with different different example. Index Spring Boot Solr Example Solrj Client Basic Authentication Example Securing Solr Setup Basic Authentication Securing Solr-Solrj Client Example Securing Solr…

Spring Boot Solr Example

Spring Boot Solr Example

Table of Contents1. Overview2. Example2.1 Solr ConfigurationStart SolrCreate Coreschema.xml2.2 pom.xml2.3 application.properties2.4 SpringBootConfig2.5 Creating a Document2.5 DocumentRepository2.7 SolrDocumentController2.8 Build Application2.9. Run Application2.10 Output1 Save Documents2 View Documents3 Delete Documents3. References 1….

Scala Create Temporary File

Scala Create Temporary File

Scalable Languageor we can say Scalais a JVM based language. Scala is a hybrid functional programming language and object-oriented programming language.  Scala and Java are two of the most important…

Scala Hello World Example

Scala Hello World Example

This article  contains Scala Hello World Example with details explanation of each elements. NOTE: Make sure that your operating system PATH variable contains SCALA_HOME path. To make sure, Go To console & Type…

Spring security custom success or fail handler

Spring security custom success or fail handler

Table of Contents1. Overview2. Example2.1 SecurityConfiguration2.2 CustomAuthenticationSuccessHandler2.3 CustomAuthenticationFailureHandler3. References4. Source Code 1. Overview This article explains about Spring security custom success or fails handler. Spring security provides complete customization on authentication…

Spring Boot Session Listener Example

Spring Boot Session Listener Example

Table of Contents1. Overview2. Example2.1 pom.xml2.2 HttpSessionConfig2.3 SpringBootConfig2.4 SessionDemoController2.5 Build Application2.6 Run Application3. References4. Source Code 1. Overview This article contains Spring Boot Session Listener Example or Spring boot HttpSessionListener…

Spring boot multiple main class

Spring boot multiple main class

Table of Contents1. OverviewException: Spring boot Unable to find a single main class from the following candidatesSolution 1 – mainClass in spring boot maven plugin:Solution 2: add start-class in maven propertiesReferences:…