这是我的第一个Spring / maven / JBoss应用程序。基本上,我正在尝试按照here
的说明进行操作我正在使用Intellij 2016.3.5,JBoss EAP 7.0.0
我尝试按照主页中的说明操作。我按照以下步骤生成了war文件:
<deployments> <deployment name="unnamed.war" runtime-name="unnamed.war"> <fs-archive path="C:\Users\VAIO\EAP-7.0.0\unnamed.war"/> </deployment> </deployments>
我上面的步骤可能出现什么问题?
更新
在@CrazyCoder的评论之后,我按照文档here启用了Web应用程序,项目模块现在看起来像这样:
和项目结构:
运行,然后打开http://localhost:8080/unnamed/
但它现在显示forbidden
这个词。我是朝着错误的方向前进的吗?
答案 0 :(得分:1)
我根据@ CrazyCoder的评论找到了解决方案。简而言之,我按照以下文档进行了操作
initial
文件夹(初始目录包含我开始使用的项目)。 initial
项目导入Intellij。 Add Framework support ...
。然后在打开的对话框中选中“Web应用程序”复选框。我们在这里所做的是根据文档here hello/SampleController.java
,并相应地修改pom.xml
。pom.xml
中修改的依赖项。导入更改run
,然后选择edit configuration
,然后选择您的服务器(在我的情况下为JBoss)$ENDED$
,因为我们没有添加任何内容。index.jsp
,然后更改正文和标题,然后再次展开以显示Hello World
hello/SampleController.java
绑定到索引页面以显示动态值。