我有很大的问题,因为我需要使用Tapestry 4.1创建项目。我找不到任何示例,我真的不知道如何在这样的旧版本中创建项目。
有人可以给我一个解决方案如何开始吗?对此我将不胜感激。
我有很大的问题,因为我需要使用Tapestry 4.1创建项目。我找不到任何示例,我真的不知道如何在这样的旧版本中创建项目。
有人可以给我一个解决方案如何开始吗?对此我将不胜感激。
像这样使用可用的 Maven 原型:
mvn archetype:generate -DarchetypeCatalog=http://tapestry.apache.org
并选择可用的 4.1 选项。
在这里您可以找到 Tapestry 4 的文档。希望对您有所帮助。
我用谷歌搜索了一下,发现了这个:
http://tapestry.apache.org/tapestry4.1/tutorials/index.html
其中有:
http://www.devshed.com/c/a/Apache/Creating-Your-First-Tapestry-Project/
另外,一个简单的hello world:
http://tapestry.apache.org/tapestry4/QuickStart/index.html
http://tapestry.apache.org/tapestry4/QuickStart/helloworld.html
使用命令行创建 Tapestry 项目的步骤
创建挂毯示例应用程序的步骤 =>
STEP-1在系统中安装 maven。您必须有 Maven 才能从挂毯创建示例项目。
STEP-2一旦你安装了 maven 然后运行这个命令 =>> mvn archetype:generate -DarchetypeCatalog= http://tapestry.apache.org
STEP-3当你运行这个命令时,它会要求你选择原型,它会要求输入数字。您可以看到以下日志
1:http ://tapestry.apache.org -> org.apache.tapestry:quickstart(Tapestry 5 快速启动项目)
2:http ://tapestry.apache.org -> org.apache.tapestry:tapestry-archetype(Tapestry 4.1.6 Archetype)
所以你想创建 Tapestry 5 quickStart 项目然后输入 1,如果你想创建 Tapestry 4.1.6 然后输入 2。
STEP-4现在根据您在步骤 3 中的选择,它将在列表中显示相应的版本。例如 - [因为我选择了 1,这就是它向我显示 5 的版本] 如果您选择 2,它将相应地显示给您]
选择版本:
5.3.7
所以从这里你应该输入版本号。在这个我选择数字4。
STEP-5现在您的项目基础已准备就绪。现在你必须输入maven项目的一些基本信息。
Define value for property 'groupId': : com.sample.tapestry
Define value for property 'artifactId': : app
Define value for property 'version': 1.0-SNAPSHOT:
Define value for property 'package': com.sample.tapestry: : com.sample.tapestry.app
第 6步最后它向您显示 Y: : 当您像这样显示时按 Enter 按钮,您可以看到日志。它会告诉你构建是成功的。
Finally your project is ready. You can delete the gradle files from the project.
You can use git init command to initialize the git in the project.