eclipse 安装maven 插件
最好还是在marketplace处安装,不容易出现问题,当然,这种方式最大问题是速度慢,而且有时候网络连接经常断掉
help-eclipse marketplace打开,搜索maven
安装第三个,如果要开发WEB项目,则还需要安装第一个。
配置jetty服务器
- <plugin>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>maven-jetty-plugin</artifactId>
- </plugin>
项目中加入这个,
然后jetty:run就可了。
使用maven添加JSTL支持
JSTL这个标签还是相当有用的。
最近的项目都是用MAVEN来搭建的,加上以下依赖就可以了:
- <!-- jstl -->
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- <version>1.1.2</version>
- <type>jar</type>
- </dependency>
- <dependency>
- <groupId>taglibs</groupId>
- <artifactId>standard</artifactId>
- <version>1.1.2</version>
- <type>jar</type>
- </dependency>
在JSP页面里加上:
- <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
于是就可以使用了:
例如:
- <c:forEach items="${webpages}" var="webpage">
- <li>
- <c:out value="${webpage.url}"></c:out>
- <c:out value="${webpage.time}"></c:out>
- <a href="<c:url value="main/delete/${webpage.id}.htm"/>"><B>delete</B></a>
- </li>
- </c:forEach>
使用maven添加quartz支持
如果在SPRING中使用,最好使用1.x系列,否则会报错“no setter found for property 'cronExpression' in class ......” ,SPRING的适配类适配的是1.X
- <dependency>
- <groupId>org.quartz-scheduler</groupId>
- <artifactId>quartz</artifactId>
- <version>2.1.6</version>
- </dependency>
- <dependency>
- <groupId>org.quartz-scheduler</groupId>
- <artifactId>quartz-oracle</artifactId>
- <version>2.1.6</version>
- </dependency>
- <dependency>
- <groupId>org.quartz-scheduler</groupId>
- <artifactId>quartz-weblogic</artifactId>
- <version>2.1.6</version>
- </dependency>
- <dependency>
- <groupId>org.quartz-scheduler</groupId>
- <artifactId>quartz-jboss</artifactId>
- <version>2.1.6</version>
- </dependency>
配置使用JDK 1.6
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.3.2</version>
- <configuration>
- <source>1.6</source>
- <target>1.6</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
使用jsoup支持,当前版本1.7.1
- <dependency>
- <!-- jsoup HTML parser library @ http://jsoup.org/ -->
- <groupId>org.jsoup</groupId>
- <artifactId>jsoup</artifactId>
- <version>${jsoup.version}</version>
- </dependency>
[error]Could not get the value for parameter encoding for plugin execution default-resources
删除用户目录.m2里内容,重新使用插件update