Securing Solr – Solrj client example
In our previous two articles Securing Single Node Solr and Securing Solr Cluster we have discussed about how to enable ssl on solr node.In this article we will discuss how to accees SSL enable…
In our previous two articles Securing Single Node Solr and Securing Solr Cluster we have discussed about how to enable ssl on solr node.In this article we will discuss how to accees SSL enable…
1. Overview Spring boot provides endpoints to provide metadata about spring boot application which is very useful to track application in production or staging server. Here we are providing an…
While run any application in JVM, JVM will take system default time zone. For example production server is running under PST timezone and spring boot application will start then application…
1. Overview Spring boot response compress or gzip can be enabled using server.compression.enabled in application.properties file, It will be supported for Tomcat, Jetty, and Undertow servers. While compress response, accept-encoding response header will…
1. Overview During web application development, Resource playing important roles so many times those resources may be moved to somewhere else or not available at the particular location at that time…
Securing solr cluster is important as much as any e-commerce websites or banking website because user query or request should not decrypt by hacker to protect confidential information.In this article…
Hyper Text Transfer Protocol Secure (HTTPS) is the secure version of HTTP. It means all communications between your browser and the website are encrypted. Securing solr is important as much…
In our previous article we have described steps for securing solr. When we do it first time one of the most common people faced is java.security.NoSuchAlgorithm exception. Possible Root cause:…
Spring boot provide RestTemplateBuilder for inter communicate between two services or we it used to call Rest Services. To more secure web services require basic authentication so RestTemplateBuilder provide simple ways to supply basic…
1. Overview Spring boot web application development CSS and JS play an important role. This example contains Spring boot CSS, JS and Image Example. Data inside resources/static consider as resources so it will…