如何使jsf @ManagedBean也成为@WebService

时间:2014-01-13 09:45:00

标签: java web-services jsf jsf-2 ejb

我想简单地通过在类定义之上添加@WebService注释和将@WebMethod注释添加到托管bean方法来使jsf托管bean也成为Web服务。

这不起作用,至少在websphere上不行。

托管bean的方法是通过调用注入会话bean的方法来进行一些EJB调用,因此,定义一个新的Web服务类并从其@WebMethods调用JSF托管bean的方法也不起作用。

有什么建议吗?

1 个答案:

答案 0 :(得分:4)

我建议你使用一种方法,其中托管bean只保留页面状态,并且它将所有事务内容委托给EJB,因此您可以将Web服务公开为托管bean方法,而不是EJB的。

更新:这适用于TomEE + 1.6.0,是您想要的吗?

package somepackage;
import java.io.Serializable;

import javax.faces.bean.ManagedBean;
import javax.faces.bean.ViewScoped;
import javax.jws.WebMethod;
import javax.jws.WebService;

@ManagedBean
@WebService
@ViewScoped
public class ManagedBeanAndWebService implements Serializable{

    private static final long   serialVersionUID    = 4479173603147480764L;
    private String someAttribute="xyz";

    public String getSomeAttribute() {
        return someAttribute;
    }

    public void setSomeAttribute(String someAttribute) {
        this.someAttribute = someAttribute;
    }

    @WebMethod(operationName="methodName")
    public void someWebMethod(String s){
        System.out.println(s);
    }
}

和xhtml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:p="http://primefaces.org/ui"
    xmlns:pe="http://primefaces.org/ui/extensions">
<h:head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Test</title>
</h:head>
<h:body>

    <h:form id="form">
        <p:outputLabel value="#{managedBeanAndWebService.someAttribute}"/> 
    </h:form>
</h:body>
</html>

和WS

enter image description here