2020
10-08
10-08
IDEA Maven项目使用debug模式运行Tomcat的详细教程
1、在pom.xml中添加下面的依赖就可以了<dependency><groupId>javax.servlet</groupId><artifactId>javax.servlet-api</artifactId><version>3.0.1</version><scope>provided</scope>//这个是作用域</dependency><dependency><groupId>javax.servlet.jsp</groupId><artifactId>jsp-api</artifactId><version>2.2</version><scope>provided</scope>//这个是作用域</dependency>注意:需要放在<dependencies></dependenci...
继续阅读 >