是否有任何类似于 Wicket 的快速入门的 Apache Click maven 原型?类似于http://wicket.apache.org/start/quickstart.html 基本上我需要的是一种使用 Maven 快速开始使用 Apache Click 的方法。提前致谢。
2 回答
我自己从未尝试过,但这个项目为 click提供了一个maven 原型。它看起来不像他们在公共存储库中提供它,因此您需要检查源代码,编译和安装它,然后才能使用它,例如:
$ svn checkout http://construtor.googlecode.com/svn/trunk/ construtor-read-only
$ cd construtor-read-only/maven-archetype-click/
$ mvn clean install
$ mvn archetype:generate
[...]
387: local -> maven-archetype-click (An archetype which generates a simplifed sample of the Apache Click Framework.)
[...]
为了将来的询问者的利益,这里有实现这一点的说明。但是,使用 Maven 3 的远程构建对我不起作用,在没有进行一些修改的情况下也没有建议本地安装。这对我有用:
- 下载原型 jar 文件
在本地 maven 3 repo 中安装原型:
mvn install:install-file -DgroupId=com.google.constructor.archetypes -DartifactId=maven-archetype-click -Dversion=1.0 -Dpackaging=jar -Dfile=\maven-archetype-click-1.0.jar
生成骨架项目:
mvn archetype:generate -DarchetypeGroupId=com.google.constructor.archetypes -DarchetypeArtifactId=maven-archetype-click -DarchetypeVersion=1.0 -DgroupId=com.test -DartifactId=clickprimer -DarchetypeCatalog=local
cd clickprimer
- mvn 清洁包
- mvn码头:运行