将 Wicket 导出到 Web 服务器

发布于 2024-11-15 02:24:13 字数 352 浏览 0 评论 0原文

当我说过去几个小时我一直在互联网和谷歌上试图找到这个问题的答案时,我是认真的。好的,我已经在 Eclipse 中编码并编译了一个可以工作的检票口。它在 Eclipse 中运行得很好,但我现在需要将其导出到我的网络服务器。我该怎么办?这是一个如此简单的概念,但没有人谈论它。我知道我需要tomcat,但他们没有说如何导出文件。如果 JAR 文件有效。如果我需要配置Tomcat是有办法的。如何让它与已经运行的 Web apache 服务器一起工作。我的猜测是,tomcat 必须运行才能执行 wicket 的 java 部分,然后您只需指向 index.html 的链接即可。但我不知道。请通过分步教程来启发我?我是 Eclipse 的新手,两天前才开始使用 Tomcat 和 Wicket。

I'm serious when I say have been all over the internet and on google for past few hours trying to find an answer to this question. Ok, I have already coded and compiled a working wicket in Eclipse. It runs in Eclipse just fine but I now need to export this to my webserver. How do I do this!? It's such a simple concept and yet no one has talked about it. I know I need tomcat, but they don't say how to export the files. If a JAR file works. If I need to configure Tomcat is some way. How to get this to work with an already running web apache server. My guess is that tomcat has to be running to execute the java portion of the wicket and then you can just point a link to your index.html. But I have no idea. Enlighten me please with a step-by-step tutorial? I'm a slight beginner with Eclipse and started using Tomcat and Wicket only 2 days ago.

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

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

发布评论

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

评论(3

很快妥协 2024-11-22 02:24:13

最好将您的项目打包到一个 war 文件发行版中。

一个简单的方法是使用 Apache Maven 来构建它。

对于 Maven,有很多插件可用,其中之一是 "war" 插件,它可以帮助您创建 war/web 存档。

您只需将 war 文件放入新下载的 tomcat 的 web 应用程序中即可。

Its preferable to pack your project into a war file distribution.

An easy approach to do that, is to use Apache Maven for building it.

For Maven there are plenty of plugins available, one of them is a "war" plugin, which helps you creating your war / web archive.

The war file you have simply to put into the webapp of a fresh downloaded tomcat.

你怎么敢 2024-11-22 02:24:13

有几种方法,但一种方法是您可以编译为 .war 文件并从 tomcat 中的管理控制台进行部署。有关 tomcat 文档,请参阅此处

There's a couple ways but one way is you can compile to a .war file and deploy from the admin console in tomcat. See here for the tomcat documentation.

七秒鱼° 2024-11-22 02:24:13

在 Eclipse 中,右键单击您的 Web 应用程序项目,选择 Export -> War File 并按照向导进行操作。

准备好 .war 文件后,您可以将其上传到 Tomcat 或 Glassfish 安装。

In Eclipse, right click your web application project, select Export -> War File and follow the wizard.

When you have your .war file ready you can then upload it to a Tomcat or Glassfish installation.

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