简单的部署应用。
第一种方法是直接写JSP代码,然后放到指定的WAR文件夹中。
第二种,是同时META-INF下的application.xml文件,然后用JAR -CF编成WAR,再集合JSP形成EAR文件,将这个EAR文件直接放到DEPLOY中即可。
<?xml version="1.0"?> <application> <display-name>Hello,JSP</display-name> <module> <web> <web-uri>web-app.war</web-uri> <context-root>/hello</context-root> </web> </module> </application>
<html> <head> <title>Hello,JSP</title> </head> <body> <% for (int i = 1;i < 5;i++) { %> <h<%=i%>>Hello,JSP</h<%=i%>> <% } %> </body> </html>
在命令行内利用jar 命令将上述文件打包成
helloworld.ear 文件, 具体命令如下:
jar cf web-app.war index.jsp
jar cf helloworld.ear web-app.war META-INF
将helloworld.ear 复制到JBoos 的server\default\deploy 目录内
在浏览器内访问http://127.0.0.1:8080/hello/ 或http://127.0.0.1:8080/hello/index.jsp