这是我的网络服务...... 使用EJB3 + Jboss AS7
@Stateful
@WebService(serviceName = "teste")
public class TesteWSImpl implements TesteWS {
private List<String> strings;
public TesteWSImpl() {
strings = new ArrayList<String>();
}
@WebMethod
@Override
public List<String> add(String string) {
strings.add(string);
return strings;
}
@PostConstruct
private void init() {
System.out.println("INIT WEB SERVICE. "
+ getClass().getCanonicalName());
}
@PreDestroy
public void destroy() {
System.out.println("DESTROY WEB SERVICE. "
+ getClass().getCanonicalName());
}
}
但在我的jboss 7端点找不到..任何想法?我需要保持我的客户状态