jetty-eclipse maven中的使用
maven
Maven: Apache Maven是一个开源的项目管理和构建工具,主要用于Java项目。适合需要自动化项目构建和依赖管理的开发者。特点包括约定优于配置、易于使用和社区驱动。
项目地址:https://gitcode.com/gh_mirrors/ma/maven
免费下载资源
·
在maven中添加pom配置,需要用到servlet-api包在tomcat下面是自带的,但在jetty中是没有的,因此在jetty的配置中要加上这个依赖
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-servlet_2.4_spec</artifactId>
<version>1.1.1</version>
<scope>provided</scope>
</dependency>
然后就是加载jetty
<build>
<plugins>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.4.5.v20170502</version>
<configuration>
<scanIntervalSeconds>10</scanIntervalSeconds>
<httpConnector>
<port>8080</port>
</httpConnector>
<webApp>
<contextPath>/crmMgr-web</contextPath>
</webApp>
</configuration>
</plugin>
</plugins>
</build>
右击项目->Run As->Maven build…->Gloas一栏敲上 jetty:run就可以运行了。
设置一下各个配置:
可以设置VM配置信息:-Xms512m -Xmx512m -XX:MaxNewSize=128m -XX:MaxPermSize=128m
运行中会出现jre问题:提示Perhaps you are running on a JRE rather than a JDK?
这是由于JDK没有配置正确引起的,需要配置JDK
位置在–>【Window】–>【Prefrences】–>【Java】–>【Installed JREs】
右键工程->属性,修改项目的JDK
右键项目run as或者debugger as的时候设置JDK
参考:
Jetty配置:https://blog.csdn.net/shelbyandfxj/article/details/79574551
jre问题:https://blog.csdn.net/hjwang1/article/details/50085839
https://blog.csdn.net/lslk9898/article/details/73836745
GitHub 加速计划 / ma / maven
4.37 K
2.67 K
下载
Maven: Apache Maven是一个开源的项目管理和构建工具,主要用于Java项目。适合需要自动化项目构建和依赖管理的开发者。特点包括约定优于配置、易于使用和社区驱动。
最近提交(Master分支:1 个月前 )
227b13a9
14 天前
c0866ec0
14 天前
更多推荐
已为社区贡献10条内容
所有评论(0)