- 浏览: 430633 次
- 性别:
- 来自: 上海
文章分类
最新评论
-
IThead:
纠结了几天,用了你的方法,现在解决了,谢谢!
Eclipse 写Javascript卡死问题 -
Rubicon__:
你好,我在运用PageWidget这个类时,出现第一页翻到第二 ...
android翻书效果实现原理( 贝塞尔曲线绘制原理/点坐标计算) -
lionios:
如果不显示printDialog,则打印出来的是空白页,请问你 ...
Print打印机例子 -
rayln:
weiqiulai 写道哥们儿,我怎么没有看到监控队列的配置和 ...
JMS监听MQ实例 -
weiqiulai:
哥们儿,我怎么没有看到监控队列的配置和代码?
JMS监听MQ实例
转载:http://www.iteye.com/topic/812940
发布webService有多种方式,不过企业中最常用的还是 以 CXF 的方式。
接下来,我来诉说以下 CXF方式 发布WebService的全步骤,供新朋友参考。
1:准备的包: cxf-bundle-2.1.3.jar | wss4j-1.5.4.jar | axis-1.4.jar
2: 创建WebService 接口,范例代码如下:
3: 创建 WebService 接口实现类,代码如下:
4: 为所发布的WebService指定角色,代码如下:
4: 在 WEB-INF下添加一个apache-cxf.xml 的配置文件,xml文件如下(注意:WebService的接口实现类以及WebService的用户角色类都在此配置中加入.):
5: 在 WEB-INF下的 web.xml 文件中加入 CXF 的配置,范例如下:
注意web.xml文件中配置的 servlet 的 <url-pattern>/ws/*</url-pattern> ,和 在 apache-cxf.xml文件中配置的 address="/userService" 。
上面的红色 标题 说明的是在 浏览器中访问的webservice 的 url 地址,例如你的工程名为:ucmanage.那么你要测试你是否已经发布好 webservice, 在浏览器中输入的地址为: http://127.0.0.1:8080/ucmanage/ws/userService
结束语: 至此完毕了 WebService的发布,如要建立客户端调用 webService,请参考: http://rwg109.iteye.com/blog/812873
发布webService有多种方式,不过企业中最常用的还是 以 CXF 的方式。
接下来,我来诉说以下 CXF方式 发布WebService的全步骤,供新朋友参考。
1:准备的包: cxf-bundle-2.1.3.jar | wss4j-1.5.4.jar | axis-1.4.jar
2: 创建WebService 接口,范例代码如下:
package com.transnal.ws; import java.util.List; import javax.jws.WebParam; import javax.jws.WebResult; import javax.jws.WebService; import com.transnal.user.model.ProfileValue; //根据自己设定,我就不删了 import com.transnal.user.model.UserDTO; //最好你也创建一个DTO /** * 说明:对内 用户模块 webservice接口 * ****************** * 日期 人员 * 2010-11-1 RenWeigang */ @WebService public interface UserService { @WebResult(name="msg") public int login(@WebParam(name="userName")String userName,@WebParam(name="password")String password); @WebResult(name="msg") public String register(@WebParam(name="userName")String userName,@WebParam(name="password")String password,@WebParam(name="email")String email)throws Exception; @WebResult(name="msg") public boolean verifyUserByUserNameAndPassword(@WebParam(name="userName")String userName,@WebParam(name="password")String password); @WebResult(name="userDTO") public UserDTO getUserByUserName(@WebParam(name="userName")String username); @WebResult(name="msg") public String userEdit(@WebParam(name="userName")String userName, @WebParam(name="email")String email, @WebParam(name="nickName")String nickName,@WebParam(name="realName")String realName,@WebParam(name="sex")int sex,@WebParam(name="birthday")String birthday,@WebParam(name="mobile")String mobile); @WebResult(name="result") public boolean verifyEmail(@WebParam(name="email")String email); @WebResult(name="result") public boolean verifyUser(@WebParam(name="userName")String userName); @WebResult(name="msg") public String resetPassword(@WebParam(name="userName")String userName,@WebParam(name="newPassowrd")String newPassword); @WebResult(name="msg") public String changePassword(@WebParam(name="userName")String userName,@WebParam(name="oldPassword")String oldPassword, @WebParam(name="newPassword")String newPassword); @SuppressWarnings("unchecked") public void updateUserProperties(@WebParam(name="userName")String userName, @WebParam(name="userProperties")List<ProfileValue> values); @SuppressWarnings("unchecked") @WebResult(name="ProfileValue") public ProfileValue getUserProperties(@WebParam(name="userName")String userName, @WebParam(name="key")String key); }
3: 创建 WebService 接口实现类,代码如下:
package com.transnal.openplatform.ws.user; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import java.util.List; import javax.jws.WebService; import net.sxinfo.common.enums.Sex; import org.apache.commons.lang.StringUtils; import org.apache.commons.validator.EmailValidator; import com.transnal.profile.model.Profile; import com.transnal.profile.model.ProfileInfo; import com.transnal.user.entity.UserEntity; import com.transnal.user.exceptions.AuthenticationException; import com.transnal.user.model.ProfileValue; import com.transnal.user.model.User; import com.transnal.user.model.UserDTO; import com.transnal.user.service.UserRemote; import com.transnal.web.ProfileExtInfo; import com.transnal.web.UserFactory; import com.transnal.ws.UserService; /** * 说明:用户webservice实现 * ****************** * 日期 人员 2010-11-1 RenWeigang */ @WebService(endpointInterface = "com.transnal.ws.UserService", serviceName = "userService") public class UserServiceImpl implements UserService { @Override public UserDTO getUserByUserName(String username) { UserDTO dto = new UserDTO(); UserEntity entity = (UserEntity) UserFactory.getUserRemote(null) .findUser(username); dto.setUserId(entity.getUserId()); dto.setUserName(entity.getUserName()); dto.setEmail(entity.getEmail()); dto.setAnswer(entity.getAnswer()); dto.setQuestion(entity.getQuestion()); dto.setApproved(entity.getApproved()); dto.setLockedOut(entity.getLockedOut()); dto.setLastLockoutDate(entity.getLastLoginDate()); dto.setFailedCount(entity.getFailedCount()); dto.setFailedAnswerCount(entity.getFailedAnswerCount()); dto.setFailedAnswerDate(entity.getFailedDate()); dto.setFailedDate(entity.getFailedDate()); dto.setLastPwdChange(entity.getLastPwdChange()); dto.setPassword(entity.getPassword()); dto.setLastLoginDate(entity.getLastLoginDate()); dto.setPwdFormat(entity.getPwdFormat().name()); Profile profile = UserFactory.getProfileRemote(null).findUserByName( username); ProfileExtInfo profileInfo = new ProfileExtInfo(UserFactory .getPropertySetAccessor(), profile); dto.setRealName(profile.getRealName()); if(null!=profileInfo.getBirthday()){ Date birthday = profileInfo.getBirthday(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); dto.setBirthday(sdf.format(birthday)); } if(StringUtils.isNotEmpty(profileInfo.getMobile())){ dto.setMobile(profileInfo.getMobile()); } dto.setSex(profileInfo.getSex().ordinal()); dto.setNickName(profileInfo.getNickName()); return dto; } public String register(String userName, String password, String email) throws Exception { // 判断 用户名是否重复 if (UserFactory.getUserRemote(null).findUser(userName) != null) { return Constants.userNameExist; } if (!EmailValidator.getInstance().isValid(email)) { return Constants.emailIsNotValid; } // 判断用户email是否被注册 if (UserFactory.getUserRemote(null).checkEmail(email)) { return Constants.emailExist; } User user = UserFactory.getUserRemote(null).createUser(userName, password, email, null, null); if (user == null) { return Constants.registFail; } UserFactory.getRoleRemote(null).addRoleToUser(userName, "guest"); return Constants.registSuccess; } @Override public String changePassword(String userName, String oldPassword, String newPassword) { UserRemote userRemote = UserFactory.getUserRemote(null); if (userRemote.findUser(userName) == null) { return Constants.userNotFound; } if (StringUtils.isBlank(newPassword) && StringUtils.isBlank(oldPassword)) { return Constants.passwordIsRequired; } if (!userRemote.verify(userName, oldPassword)) { return Constants.oldPasswordIsNotValid; } try { userRemote.changePwd(userName, oldPassword, newPassword); } catch (AuthenticationException e) { return Constants.changePasswordFail; } return Constants.changePasswordSuccess; } @Override public boolean verifyEmail(String email) { if (UserFactory.getUserRemote(null).checkEmail(email)) { return true; } return false; } @Override public boolean verifyUser(String userName) { // 判断 用户名是否重复 if (UserFactory.getUserRemote(null).findUser(userName) != null) { return true; } return false; } @Override public String userEdit(String userName, String email, String nickName, String realName, int sex, String birthday, String mobile) { // email 格式 if (!EmailValidator.getInstance().isValid(email)) { return Constants.emailIsNotValid; } // 是否占用 if (!UserFactory.getUserRemote(null).isValidEmail(userName, email)) { return Constants.emailExist; } // 修改信息 UserFactory.getUserRemote(null).updateUser(userName, email); Profile profile = UserFactory.getProfileRemote(null).findUserByName( userName); if(StringUtils.isNotBlank(realName)){ profile.setRealName(realName); } ProfileExtInfo profileInfo = new ProfileExtInfo(UserFactory .getPropertySetAccessor(), profile); if(StringUtils.isNotBlank(nickName)){ profileInfo.setNickname(nickName); } switch (sex) { case 1: profileInfo.setSex(Sex.male); break; case 2: profileInfo.setSex(Sex.famale); break; default: profileInfo.setSex(Sex.unknown); break; } if(StringUtils.isNotBlank(birthday)){ SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); try { profileInfo.setBirthday(sdf.parse(birthday)); } catch (ParseException e) { System.out.println("设置生日出错!!!!!!!"); profileInfo.setBirthday(new Date()); // e.printStackTrace(); } } if(StringUtils.isNotBlank(mobile)){ profileInfo.setMobile(mobile); } UserFactory.getProfileRemote(null).storeUser(profile); UserFactory.getProfileRemote(null).storeUser(profileInfo); return Constants.userEditSuccess; } @Override public String resetPassword(String userName, String newPassword) { if (StringUtils.isBlank(userName)) { return Constants.usernameIsRequired; } User user = UserFactory.getUserRemote(null).findUser(userName); if (null == user) { return Constants.userNotFound; } String username = UserFactory.getUserRemote(null).resetPwd( user.getUserName(), newPassword); if (username == null) { return Constants.oldPasswordIsNotValid; } return Constants.resetPasswordSuccess; } @Override public boolean verifyUserByUserNameAndPassword(String userName, String password) { return UserFactory.getUserRemote(null).verify(userName, password); } @Override public int login(String userName, String password) { // 登录验证 try { System.out.println("1"); User user = UserFactory.getUserRemote(null).login(userName, password); System.out.println(user.getUserName()); System.out.println("2"); } catch (Exception e) { e.printStackTrace(); System.out.println("3"); if (e instanceof com.transnal.user.exceptions.BadUserNameOrPasswordAuthenticationException) { return -1; } else if (e instanceof com.transnal.user.exceptions.DisableUserAuthenticationException) { return -2; } else if (e instanceof com.transnal.user.exceptions.NotApprovedAuthenticationException) { return -3; } else if (e instanceof com.transnal.user.exceptions.BadPasswordAuthenticationException) { return -4; } } return Constants.authenticateSuccess; } @SuppressWarnings("unchecked") public void updateUserProperties(String userName, List<ProfileValue> values) { Profile profile = UserFactory.getProfileRemote(null).findUserByName( userName); UserFactory.getProfileRemote(null).storeUser(profile); // 其他属性 ProfileInfo info = new ProfileInfo( UserFactory.getPropertySetAccessor(), profile); for (ProfileValue value : values) { if (value.getValue() instanceof java.lang.Integer) { info.setProperty(value.getKey(), Integer.parseInt(value .getValue().toString())); } else if (value.getValue() instanceof java.lang.Long) { info.setProperty(value.getKey(), Long.parseLong(value .getValue().toString())); } else if (value.getValue() instanceof java.lang.Double) { info.setProperty(value.getKey(), Double.parseDouble(value .getValue().toString())); } else if (value.getValue() instanceof java.lang.Boolean) { info.setProperty(value.getKey(), Boolean.parseBoolean(value .getValue().toString())); } else if (value.getKey().equals("birthday")) { Date date = null; SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); try { String a = value.getValue().toString(); date = sdf.parse(a); } catch (ParseException e) { e.printStackTrace(); } info.setProperty(value.getKey(), date); } else { info.setProperty(value.getKey(), value.getValue()); } } } @SuppressWarnings("unchecked") public ProfileValue getUserProperties(String userName, String key) { Profile profile = UserFactory.getProfileRemote(null).findUserByName( userName); UserFactory.getProfileRemote(null).storeUser(profile); ProfileInfo info = new ProfileInfo( UserFactory.getPropertySetAccessor(), profile); ProfileValue value = new ProfileValue(); value.setKey(key); //根据不同的类型设置不同的value if (value.getValue() instanceof java.lang.Integer) { value.setValue(info.getPropertySet().getInt(key)); } else if (value.getValue() instanceof java.lang.Long) { value.setValue(info.getPropertySet().getLong(key)); } else if (value.getValue() instanceof java.lang.Double) { value.setValue(info.getPropertySet().getDouble(key)); } else if (value.getValue() instanceof java.lang.Boolean) { value.setValue(info.getPropertySet().getBoolean(key)); } else if (value.getKey().equals("birthday")) { Date date = null; SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); try { String a = value.getValue().toString(); date = sdf.parse(a); value.setValue(date); } catch (ParseException e) { e.printStackTrace(); } } else { value.setValue(info.getPropertySet().getString(key)); } return value; } }
4: 为所发布的WebService指定角色,代码如下:
package com.transnal.openplatform.ws.security; import java.util.Arrays; import javax.security.auth.callback.Callback; import javax.security.auth.callback.CallbackHandler; import org.apache.ws.security.WSConstants; import org.apache.ws.security.WSPasswordCallback; import org.apache.ws.security.WSSecurityException; import com.transnal.user.entity.UserEntity; import com.transnal.web.UserFactory; public class PasswordHandler implements CallbackHandler { //凡是角色为 ws 的用户 才可访问你的这个 WebService private static final String ROLE_SERVICES="ws"; public void handle(Callback[] callbacks) throws WSSecurityException { WSPasswordCallback callback = (WSPasswordCallback) callbacks[0]; String userName = callback.getIdentifer(); //判断角色 String[] roles=UserFactory.getRoleRemote(null).findByUser(userName); if(!Arrays.asList(roles).contains(ROLE_SERVICES)){ throw new WSSecurityException(String.format("not '%s' role privilege ", ROLE_SERVICES)); } if (WSConstants.PASSWORD_TEXT.equals(callback.getPasswordType())) { String pw = callback.getPassword(); if (!UserFactory.getUserRemote(null).verify(userName, pw)) { throw new WSSecurityException("password not match"); } } else { UserEntity user = (UserEntity)UserFactory.getUserRemote(null).findUser(userName); callback.setPassword(user.getPassword()); } } }
4: 在 WEB-INF下添加一个apache-cxf.xml 的配置文件,xml文件如下(注意:WebService的接口实现类以及WebService的用户角色类都在此配置中加入.):
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd"> <!-- CXF ,此处是配置发布的 web service --> <import resource="classpath:META-INF/cxf/cxf.xml" /> <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" /> <import resource="classpath:META-INF/cxf/cxf-servlet.xml" /> <bean id="utWss4jInHandler" class="org.apache.cxf.ws.security.wss4j.WSS4JInInterceptor"> <constructor-arg> <map> <entry key="action" value="UsernameToken Timestamp" /> <entry key="passwordType" value="PasswordText" /> <entry key="passwordCallbackClass" value="com.transnal.openplatform.ws.security.PasswordHandler" /> </map> </constructor-arg> </bean> <!-- id指 在spring配置的bean的Id implementor 指具体的实现类 address 指明这个web service的相对地址 --> <jaxws:endpoint id="userService" implementor="com.transnal.openplatform.ws.user.UserServiceImpl" address="<span style="color: #ff0000;">/userService</span>"> <jaxws:inInterceptors> <bean class="org.apache.cxf.binding.soap.saaj.SAAJInInterceptor" /> <ref bean="utWss4jInHandler" /> </jaxws:inInterceptors> </jaxws:endpoint> </beans>
5: 在 WEB-INF下的 web.xml 文件中加入 CXF 的配置,范例如下:
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:jsp="http://java.sun.com/xml/ns/javaee/jsp" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5"> <display-name>用户管理中心</display-name> <description>ucmange admin</description> <!-- 环境参数配置 --> <context-param> <param-name>contextConfigLocation</param-name> <param-value> /WEB-INF/apache-cxf.xml </param-value> </context-param> <!-- CXF --> <servlet> <servlet-name>CXFServlet</servlet-name> <servlet-class> org.apache.cxf.transport.servlet.CXFServlet </servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>CXFServlet</servlet-name> <url-pattern><span style="color: #ff0000;">/ws/*</span></url-pattern> </servlet-mapping> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app>
注意web.xml文件中配置的 servlet 的 <url-pattern>/ws/*</url-pattern> ,和 在 apache-cxf.xml文件中配置的 address="/userService" 。
上面的红色 标题 说明的是在 浏览器中访问的webservice 的 url 地址,例如你的工程名为:ucmanage.那么你要测试你是否已经发布好 webservice, 在浏览器中输入的地址为: http://127.0.0.1:8080/ucmanage/ws/userService
结束语: 至此完毕了 WebService的发布,如要建立客户端调用 webService,请参考: http://rwg109.iteye.com/blog/812873
- cxf-bundle-2.1.3.jar.zip (3.9 MB)
- 下载次数: 92
- axis-1.4.jar.zip (1.5 MB)
- 下载次数: 65
- wss4j-1.5.4.jar.zip (300.2 KB)
- 下载次数: 40
发表评论
-
使用最新版本的Java EE eclipse构建webservice应用(转载!!)
2011-10-25 09:00 1026转载自:http://xiaocai1988.iteye.co ... -
WebService完整的服务端生成
2011-09-28 09:53 886(1)调用插件方法Axis2 Service Archiver ... -
WebService的wsdl生成,用axis生成
2011-10-22 15:19 936使用org.apache.axis2.wsdl.WSDL2Ja ... -
如何通过Axis服务部署项目
2011-10-24 11:08 940(1)首先写wsdl文件EditShoppingCartSer ... -
如何建立一个WebService项目
2011-10-24 11:09 1291(1) 首先新建一个项目,导入Spring和axis包 (2) ... -
简单CXF方式的webService客户端调用范例(转载)
2011-02-25 14:20 2239一般webServices发布后需要测试一下,是否可行通,在此 ...
相关推荐
首先,"5-采用CXF框架发布webservice.avi"这个视频很可能详细介绍了使用CXF的基本步骤。发布一个Web服务通常包括以下过程: 1. **环境准备**:确保你的开发环境中已经安装了Java SDK和Maven或Gradle等构建工具,...
webservice示例 springmvc+maven+cxf发布webservice 博客地址 http://blog.csdn.net/joe_storm/article/details/78839150
通过以上步骤,我们就可以成功地使用Spring+CXF发布一个完整的WebService服务。这个过程中,Spring负责管理和依赖注入,而CXF则负责处理Web服务的通信细节,两者结合提供了一种强大且灵活的解决方案。在实际开发中,...
**SpringBoot框架** SpringBoot是由Pivotal团队提供的全新框架,其设计目标是简化Spring应用...这两个部分可以作为学习和实践SpringBoot发布和消费Web服务的起点,帮助开发者深入理解SpringBoot与CXF的协同工作方式。
当我们谈论“使用CXF发布WebService”时,我们实际上是在讨论如何利用Apache CXF框架创建和部署Web服务。Apache CXF是一个开源的Java框架,专门用于构建和消费Web服务,支持多种协议,如SOAP和RESTful。 首先,我们...
这篇博文链接虽然缺失,但通常会介绍使用CXF发布Web服务的步骤。首先,我们需要在项目中引入CXF库。这可以通过Maven或Gradle的依赖管理来实现。接着,我们需要创建一个Java类,该类将作为我们的Web服务接口,通常会...
通过这个项目,开发者不仅可以了解SpringBoot和CXF的基本概念,还能掌握两者如何协同工作,发布和调用Web服务。同时,对于SpringBoot应用的打包、部署和测试也有了一定的认识。这个例子是一个理想的实践项目,对于...
CXF方式实现的WebService 接口的发布
SSH+CXF整合发布Web服务(Webservice)实例详解 在软件开发中,SSH(Spring、Struts、Hibernate)是一个常见的Java EE应用框架组合,用于构建高效、可维护的企业级应用程序。CXF则是一个开源的Java服务堆栈,主要...
6. **CXF的WSDL第一方式**:CXF也支持WSDL第一方式,即先有WSDL描述服务,然后根据WSDL自动生成Java代码。这种方式适合于已有WSDL描述的服务,或者需要严格遵循WSDL规范的情况。 7. **CXF与Spring集成**:CXF与...
用camel-cxf调用webservice和发布一个webservice接口例子,首先启动QueryServiceMain主函数启动webservice接口,然后启动测试类TestWebservice。例子主要是实现java代码实现camel调用webservice接口
【精品文档】基于cxf webservice传递List及bean.pdf CXF学习笔记.doc 使用Apache CXF开发Web Service.pdf 如何使用myeclipse开发 webservice
CXF方式的WebService+Spring,请根据“创建WebService的几种方式简介(EndPoint、JAX-WS、CXF、axis2、自定义Servlet+Document解析)”文章配套练习
这个标题“cxf开发webservice所用jar包”表明我们正在讨论一组CXF框架所需的JAR文件,这些文件对于利用CXF开发基于Web服务的应用程序至关重要。在描述中提到“cxf-2.4.1整合spring3.0所用jar包”,这暗示了我们使用...
总的来说,“使用CXF发布的WebService服务”涉及到以下几个关键步骤:定义服务接口和实现,配置CXF服务端点,部署服务,以及生成和使用客户端代理。通过这个“employeeServiceForCxf”示例,初学者可以清晰地了解到...
总之,通过Spring Boot与CXF的集成,我们可以轻松地在Spring Boot应用中发布Web服务接口,提供基于SOAP的通信方式。这不仅简化了开发流程,还利用了Spring Boot的自动化配置和CXF的强大功能,为构建高效、可维护的...
在使用CXF调用Web服务时,通常会经历以下步骤: 1. **创建服务客户端**:首先,你需要有一个服务的WSDL(Web Service Description Language)文件,这是定义Web服务接口和消息格式的标准XML文档。CXF可以基于WSDL...
【描述】中提到的“webservice对外发布接口全部源码拿起来就能用”,这表明这是一个关于使用Apache CXF框架创建和发布的Web服务项目。Apache CXF是一个开源的Java框架,主要用于构建和开发Web服务。它支持SOAP、...
本篇文章将深入探讨如何使用CXF的`EndpointImpl`类来发布一个WebService,并加入拦截器。 首先,我们要理解`EndpointImpl`是CXF框架用于构建和配置Web服务端点的核心类。通过实例化这个类,我们可以自定义服务的...