标签:工具类 new 生命周期 文件名 http nbsp sim 常用 code
Util.java
package util; import java.text.SimpleDateFormat; import java.util.Date; /** * 工具类,提供通用的方法 * @author Administrator * */ public class Util { /** * 得到当前系统时间并以自定义的日期格式 * @param pattern 返回的日期格式 * @return */ public static String getSystemTimeForMat(String pattern) { String time = ""; Date date = new Date(); SimpleDateFormat dateFormat = new SimpleDateFormat(pattern); time = dateFormat.format(date); return time; } }
结果:
<build> <finalName>maven_plugins_01</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <finalName>test</finalName> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
configuration该标签修改javadoc命令的配置(比如文件名、目录等),配置属性在http://maven.apache.org/plugins/ 查看
<goal>jar</goal> 该命令(不需要javadoc:jar)被绑定到<phase>package</phase> 中,只要执行package命令就会自动执行该jar命令。
结果:
标签:工具类 new 生命周期 文件名 http nbsp sim 常用 code
原文地址:http://www.cnblogs.com/shyroke/p/7640285.html