首页 > 其他 > 详细

xFire指定路径配置services.xml放置位置

时间:2015-10-28 17:24:12      阅读:1422      评论:0      收藏:0      [点我收藏+]

xfire源代码里,获取位置是

	private String getConfigPath() {
		if (configPath == null || configPath.length() == 0)
			return "META-INF/xfire/services.xml";
		else
			return configPath;
	}

但是提供指定配置位置,源代码里获取位置是

public XFire createXFire() throws ServletException {
		configPath = getInitParameter("config");
		XFire xfire;
		try {
			xfire = loadConfig(getConfigPath());
		} catch (XFireException e) {
			throw new ServletException(e);
		}
		if (xfire == null || xfire.getServiceRegistry() == null
				|| xfire.getServiceRegistry().getServices() == null
				|| xfire.getServiceRegistry().getServices().size() == 0)
			xfire = super.createXFire();
		return xfire;
	}

所以可以在web.xml里配置config参数进行配置路径

	<servlet>
        <servlet-name>XFireServlet</servlet-name> 
        <servlet-class>org.codehaus.xfire.transport.http.XFireConfigurableServlet</servlet-class> 
        <init-param>
          <param-name>config</param-name>
          <param-value>services.xml</param-value>
        </init-param>
        <load-on-startup>0</load-on-startup> 
    </servlet> 
    <servlet-mapping> 
        <servlet-name>XFireServlet</servlet-name> 
        <url-pattern>/services/*</url-pattern> 
    </servlet-mapping>


xFire指定路径配置services.xml放置位置

原文:http://yjm199.blog.51cto.com/4408395/1707314

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!