Struts 初学者库

发布于 2024-11-02 20:08:53 字数 301 浏览 1 评论 0原文

我是struts的初学者。我使用了一些示例 hello world 应用程序。首先,我执行了 struts 2.0.1 的 hello world 示例,然后下载了最新的库并尝试创建 struts 应用程序。但无法部署。我下载的版本是2.2。然后我不得不稍微改变一下库。我必须使用 commons-io commons-file-upload javaasist,而不是 2.0.1 中使用的 commons-logging。然后只有我可以运行它。但是所有其他代码都是相同的。为什么会这样呢?我在哪里可以得到有关此事的详细信息。是否有任何链接或参考可以让我知道所有应用程序中使用的核心库?

I am beginner to struts. I used few sample hello world applications. First of all I executed hello world example of struts 2.0.1 then I downloaded latest libraries and tried to create struts app. But it couldn't be deployed. My downloaded version was 2.2. Then I had to change the libraries a bit. Instead of commons-logging used in 2.0.1 I had to use commons-io commons-file-upload javaasist. Then only i could run it. However all other codes were same. Why is it so? Where could i get the details regarding this. Is there any link or reference by which i can know the core libraries to be used in all applications?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷心人i 2024-11-09 20:08:53

我建议使用 Mavenstruts 2 maven 原型 启动项目。例如,安装 Maven 后:

mvn archetype:generate -B \
                   -DgroupId=your.group.id \
                   -DartifactId=your.app.name \
                   -DarchetypeGroupId=org.apache.struts \
                   -DarchetypeArtifactId=struts2-archetype-convention \
                   -DarchetypeVersion=2.2.1

将为您创建一个示例 struts 2 项目,其中包含 约定插件已启用。

您还可以在此处找到核心依赖项列表:

http://struts。 apache.org/2.2.1/struts2-core/dependencies.html

I'd recommend using Maven and one of the struts 2 maven archetypes to start a project. For example, after installing Maven:

mvn archetype:generate -B \
                   -DgroupId=your.group.id \
                   -DartifactId=your.app.name \
                   -DarchetypeGroupId=org.apache.struts \
                   -DarchetypeArtifactId=struts2-archetype-convention \
                   -DarchetypeVersion=2.2.1

will create a sample struts 2 project for you with the conventions plugin enabled.

You can also find a list of core dependencies here:

http://struts.apache.org/2.2.1/struts2-core/dependencies.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文