转载自:http://fengshen-xia.iteye.com/blog/293854
翻译自"Service Oriented Architecture with Java"(使用Java开发面向服务的架构)一书之第二章
[接上篇Web服务和SOA(一)] 现在,我们来看看如何使用 Java 实现 findById 这个 SOA 服务。我们将使用 JAXB 库来实现 XML 的自动绑定, JAXB 库已经包含在最新的 JDK6 中。因此,如果您使用的是 JDK6 ,您不需要下载额外的 jar 包,否则,您需要下载 JAXB ,并把它显式地加到您的服务器和客户端的类路径中。但是,因为下面的代码使用了 Java 注解功能 (Annotations) ,所以您需要 JDK5 或者更高版本编译和执行下面的代码。我们采用 Tomcat5.5 实现服务器端的 SOA 服务,实际上,我们只用了一个简单的 Servlet 来实现这个服务。
我们就动手写服务器和客户端的 Java 类来实现客户和服务器端的交互,这些类包括 Item 、 ItemAction 和 ItemActionResponse 。它们都是带有 Java 注解的 POJO 对象 (Plain Oil Java Objects) , Java 注解在 XML 序列化和反序列化的过程中起了很重要的作用,示例代码如下所示:
代码清单 3 – XML 和注解进行绑定
- @XmlRootElement (name= "Item" )
- public class Item {
- private int id;
- private String code;
- private String description;
- ... getter/setter methods omitted ...
- @XmlRootElement (name= "ItemAction" )
- public class ItemAction{
- private String method;
- private Item item; ...
- @XmlRootElement (name= "ItemActionResponse" )
- public class ItemActionResponse {
- private String retCode;
- private Item item; ...
下面的代码是服务实现的主要部分,所有实现代码都包含在
Servlet 的 doPost() 方法中,该 Servlet 在 Web.xml 中的 URL 映射名为 itemCrudService 。
程序清单 4—itemCrudService 服务的服务器端实现
- protected void doPost(HttpServletRequest request, HttpServletResponse response)
- throws ServletException, IOException
- {
- try {
- JAXBContext jaxbContext = JAXBContext.newInstance (ItemAction. class , ItemActionResponse. class );
- Unmarshaller unmarshaller = jaxbContext.createUnmarshaller();
- ItemAction itemAction = (ItemAction)
- unmarshaller.unmarshal(request.getInputStream());
- String method = itemAction.getMethod();
- ItemActionResponse itemActionResponse = new ItemActionResponse();
- if ( "findById" .equals(method)){
- int id = itemAction.getItem().getId();
- Item item = new Item();
- item.setId(id);
- item.setCode( "Item XYZ" );
- item.setDescription( "Description item XYZ" );
- itemActionResponse.setRetCode( "OK" );
- itemActionResponse.setItem(item);
- }
- Marshaller marshaller = jaxbContext.createMarshaller();
- marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT,
- Boolean.TRUE);
- marshaller.marshal(itemActionResponse, System.out);
- marshaller.marshal( itemActionResponse,
- response.getOutputStream());
- }
- catch (JAXBException e){
- throw new ServletException(e);
- }
- }
到现在为止,我们完成了一个基本服务的实现,其工作流程非常明了:
1. 把 XML 请求序列化
2. 进行处理操作
3. 准备和序列化应答 XML
请注意上面的服务可供任何语言和技术调用,只要客户端程序能够对 XML 进行序列化和反序列化及对信息交换的协议有所了解即可。
程序清单5 —itemCrudService 服务的客户端实现
- ItemAction itemAction = new ItemAction();
- Item item = new Item();
- item.setId(26);
- itemAction.setMethod( "findById" );
- itemAction.setItem(item);
- URL url = new URL( "http://localhost/SoaBookPoxHttp/itemCrudService" );
- HttpURLConnection con = (HttpURLConnection) url.openConnection();
- con.setDoOutput( true );
- con.setRequestMethod( "POST" );
- con.connect();
- JAXBContext jaxbContext = JAXBContext.newInstance (ItemAction. class , ItemActionResponse. class );
- Marshaller marshaller = jaxbContext.createMarshaller();
- marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
- marshaller.marshal(itemAction, System. out );
- marshaller.marshal(itemAction, con.getOutputStream());
- Unmarshaller unmarshaller = jaxbContext.createUnmarshaller();
- ItemActionResponse itemActionResponse = (ItemActionResponse)
- unmarshaller.unmarshal(con.getInputStream());
- System. out .println( "retCode=" +itemActionResponse.getRetCode()+ "\r" +
- "id=" +itemActionResponse.getItem().getId()+ "\r" +
- "code=" +itemActionResponse.getItem().getCode()+ "\r" + "description=" +itemActionResponse.getItem() .getDescription());
通过以上代码您会看到,所有参与消息交换的类
( 包括 Item, ItemAction 及 ItemActionResponse) 对客户端必须是可见的。在本例中,客户端和服务器端都使用 Java ,因此我们只需要简单地这些类从服务器端的项目中拷贝到客户端的项目中即可。但一般说来,这并不是必需的 ( 请思考一下如果客户端和服务器端使用不同语言的情况 ) 。服务实现过程中唯一的要求就是,您要传输的对象必须满足序列化和反序列化的要求。我们可以使用同样的方法来实现 findAllItems 服务,为此,我们新建一个 Servlet ,这个 Servlet 不需要任何输入,并返回所有的商品列表。该服务的实现代码如下:
程序清单 6—findAllItems 服务的服务器端实现
- protected void doPost(HttpServletRequest request,
- HttpServletResponse response)
- throws ServletException, IOException
- {
- try {
- JAXBContext jaxbContext = JAXBContext.newInstance (ItemList. class , Item. class );
- ItemList itemList = new ItemList();
- itemList.setList( new ArrayList());
- Item i1 = new Item();
- i1.set ... ;
- itemList.getList().add(i1);
- ... populate itemList ...
- Marshaller marshaller = jaxbContext.createMarshaller();
- marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT,
- Boolean.TRUE);
- marshaller.marshal(itemList, System.out);
- marshaller.marshal(itemList, response.getOutputStream());
- }
- catch (JAXBException e) {
- throw new ServletException(e);
- }
- }
请注意,这里我们还需要定义一个
ItemList 类,其代码如下:
程序清单 7—ItemList 类的源代码
- import java.util.List;
- import javax.xml.bind.annotation.XmlRootElement;
- @XmlRootElement (name= "ItemList" )
- public class ItemList {
- private List list;
- ...
相应的客户端测试代码应如下所示:
程序清单 8— findAllItems 服务的客户端端测试代码
- URL url = new URL( "http://localhost/SoaBookPoxHttp/findAllItems" );
- HttpURLConnection con = (HttpURLConnection) url.openConnection();
- con.setRequestMethod( "POST" );
- con.connect();
- JAXBContext jaxbContext = JAXBContext.newInstance (ItemList. class , Item. class );
- Unmarshaller unmarshaller = jaxbContext.createUnmarshaller();
- ItemList itemList = (ItemList)
- unmarshaller.unmarshal(con.getInputStream());
- for (Iterator iterator = itemList.getList().iterator();
- iterator.hasNext();)
- {
- Item item = (Item) iterator.next();
- System.out.println( item.getId()+ " - " + item.getCode()+ " - " +
- item.getDescription());
- }
译者注:如果您想增加对
SOA 服务的理解,并有兴趣动手一试,请不妨补齐上面的源代码,看看能否在 Tomcat 中运行并通过测试。译者补齐了源代码并在 Tomcat6.0+Java6 的环境下测试通过,源代码的链接如下,供您参考。
http://carllgc.blog.ccidnet.com/job-htm-action-download-itemid-777373-aid-86781.html