Apache Web pages and security

1, Apache Web page optimization 1. Web page compression The access speed of the website is determined by many factors, including the response speed of the application, network bandwidth, server performance, network transmission speed with the client and so on One of the most important factors is the response speed of Apache itself. Therefor ...

Posted on Thu, 07 Oct 2021 04:53:46 -0400 by melrse

[vulhub] duplicate of Apache Solr remote command execution vulnerability (CVE-2017-12629)

features Visit port 8983 to view the administration page of Apache solr without logging in. (port may be changed) The website title is Solr Admin, and the icon is a bit like a red flower Impact version Apache Solr 5.5.0 to 7.0.1 Exploit vulnerability Before version 7.1.0, there were two vulnerabilities: XML entity extension vulnerability ...

Posted on Fri, 17 Sep 2021 18:29:46 -0400 by jcampbell1

Spring Boot uses Apache cursor to register and discover services. "Chapter 4: ZooKeeper cursor application scenario practice" and "architecture road ZooKeeper theory and practice"

  Related historical articles (you may need to read the previous series before reading this article 👇) The most complete Spring in China   Boot Series IV Sharing mode: sharing girlfriend  -  Part 355 What is?   ZooKeeper  -  Part 347 ZooKeeper installation  -  Chapter 348 ZooKeeper data structure a ...

Posted on Mon, 13 Sep 2021 15:38:23 -0400 by rachelkoh

freemarker tag usage and configuration

After some time of research, freemarker really works better than jsp, and freemarker strictly divides the mvc pattern.Show on the page as a template filler.The following describes the use and configuration of freemarker that I experienced. Configuration tags are good for maintaining and expanding the project. Create a freemarker configuratio ...

Posted on Mon, 20 Jul 2020 11:38:03 -0400 by davidosullivan

freemarker tag usage and configuration

After some time of research, freemarker really works better than jsp, and freemarker strictly divides the mvc pattern.Show on the page as a template filler.The following describes the use and configuration of freemarker that I experienced. Configuration tags are good for maintaining and expanding the project. Create a freemarker configuratio ...

Posted on Mon, 20 Jul 2020 11:39:27 -0400 by icon4tech

freemarker tag usage and configuration

After some time of research, freemarker really works better than jsp, and freemarker strictly divides the mvc pattern.Show on the page as a template filler.The following describes the use and configuration of freemarker that I experienced. Configuration tags are good for maintaining and expanding the project. Create a freemarker configuratio ...

Posted on Mon, 20 Jul 2020 11:38:18 -0400 by tensitY

Deploying multiple projects under Tomcat

Multiple project deployments with the same port number Add: <Context path="/route" reloadable="true" docBase="/home/develop/tomcat-7.0.54/flatrass"/>   <Context path="/route2" reloadable="true" docBase="/home/develop/tomcat-7.0.54/flatrasweats"/>   By visiting: http://127.0.0.1:8080/route  http://127.0.0.1:8080/route2 It ...

Posted on Sat, 18 Jul 2020 11:33:04 -0400 by rahulroy

Deploying multiple projects under Tomcat

Multiple project deployments with the same port number Add: <Context path="/route" reloadable="true" docBase="/home/develop/tomcat-7.0.54/flatrass"/>   <Context path="/route2" reloadable="true" docBase="/home/develop/tomcat-7.0.54/flatrasweats"/>   By visiting: http://127.0.0.1:8080/route  http://127.0.0.1:8080/route2 It ...

Posted on Sat, 18 Jul 2020 11:33:06 -0400 by adamlacombe

commons-lang3 tool class learning (2)

From http://commons.apache.org/proper/commons-lang/javadocs/api-release/org/apache/commons/lang3/ Official documents to organize and remember for yourself 3. BooleanUtils Boolean Tool Class and(boolean...array) logic and BooleanUtils.and(true, true) = true BooleanUtils.and(false, false) = false ...

Posted on Fri, 17 Jul 2020 11:54:09 -0400 by bpat1434

Java Server-side CORS Cross-Domain Configuration

Now the web program architecture tends to be more and more front-end and back-end separated, the benefits of front-end and back-end separated, not to mention here.But one of the problems we face is cross-domain.Here is a brief record of the solution on the server side. References and references to relevant parts of this article http://blog ...

Posted on Tue, 14 Jul 2020 10:34:25 -0400 by jonasr