there is so many tcp connections between 127.0.0.1 and 127.0.0.1 on server machine
I run “netstat -ano” on a windows server and report many tcp connections between 127.0.0.1 and 127.0.0.1. These self connctions’s PID belong to a java process, a backend application developed with spring framework. What situation will lead to this problem generally? netstat -ano
Message The absolute uri: [http://java.sun.com/jsp/jstl/core] cannot be resolved in either web.xml or the jar files deployed with this application
<!– https://mvnrepository.com/artifact/jstl/jstl –> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>4.0.1</version> <scope>provided</scope> </dependency> <!– https://mvnrepository.com/artifact/jakarta.servlet.jsp.jstl/jakarta.servlet.jsp.jstl-api –> <dependency> <groupId>jakarta.servlet.jsp.jstl</groupId> <artifactId>jakarta.servlet.jsp.jstl-api</artifactId> <version>2.0.0</version> </dependency> <!– https://mvnrepository.com/artifact/org.glassfish.web/jakarta.servlet.jsp.jstl –> <dependency> <groupId>org.glassfish.web</groupId> <artifactId>jakarta.servlet.jsp.jstl</artifactId> <version>2.0.0</version> </dependency> Try these dependancy beacuse some times before i face this exception so i add these dependency to my pom.xml file java web New contributor Kumkum […]