WEB开发网
开发学院软件开发Java WebSphere Application Server Community Edition... 阅读

WebSphere Application Server Community Edition 入门

 2010-01-18 00:00:00 来源:WEB开发网   
核心提示: 在 samples 目录下,hello 目录包含应用程序的源代码和二进制两种形式,WebSphere Application Server Community Edition 入门(6),如果您导航至 src/webapp,您将看到这是一个非常简单的 Web 应用程序,主文件是一个 Java S

在 samples 目录下,hello 目录包含应用程序的源代码和二进制两种形式。如果您导航至 src/webapp,您将看到这是一个非常简单的 Web 应用程序。主文件是一个 Java ServerPages 文件 index.jsp(清单 1)。


清单 1. index.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %> 
<html> 
 <head> 
   <jsp:useBean id="datetime" class="java.util.Date" /> 
   <title>Hello IBM WebSphere Application Server Community Edition Version 1</title> 
 </head> 
 <body> 
   <h2>Welcome to IBM WebSphere Application Server Community Edition Version 1</h2> 
   <p>Congratulations on running this very simple demo application on ${datetime}.</p> 
 </body> 
</html> 

Hello 应用程序也有一个遵循标准 J2EE 的部署描述符(清单 2)。Hello 应用程序是一个标准的 Web 应用程序,所以应该不需要做任何更改就可以在 Community Edition 或其他任何 J2EE 应用服务器上运行。


清单 2. web.xml
 <?xml version="1.0" encoding="UTF-8" ?> 
 <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" 
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
   xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" /> 

上一页  1 2 3 4 5 6 7 8 9  下一页

Tags:WebSphere Application Server

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接