Springboot 整合axis2 集成Webservice

因客户需使用Springboot 集成Webservice,本文参考了两位大佬的文章:
https://blog.csdn.net/dong945221578/article/details/71429735
https://www.cnblogs.com/JohnDawson/p/11151806.html
一、引入依赖

    <dependency>
            <groupId>org.apache.axis2</groupId>
            <artifactId>axis2-transport-http</artifactId>
            <version>1.8.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.axis2</groupId>
            <artifactId>axis2-transport-local</artifactId>
            <version>1.8.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.axis2</groupId>
            <artifactId>axis2-adb</artifactId>
            <version>1.8.0</version>
        </dependency>

二、写个接口以及实现类
接口:

package com.efounder.spring.demo;

/**
 * @ClassName HelloService
 * @description: //TODO
 * @Author:tt
 * @Date: 2021/8/8 14:52
 */
public interface HelloService {
    public String sayHello(String info);
}

实现类:

package com.efounder.spring.demo;

/**
 * @ClassName HelloServiceImpl
 * @description: //TODO
 * @Author: tt
 * @Date: 2021/8/8 14:53
 */
public class HelloServiceImpl {
    public String sayHello(String info) {
                 return "sayHello:"+info;
             }
}

三、创建资源文件server-config.wsdd

<?xml version="1.0" encoding="UTF-8"?>
<deployment xmlns="http://xml.apache.org/axis/wsdd/"
    xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
    <handler type="java:org.apache.axis.handlers.http.URLMapper"
        name="URLMapper" />

    <!--要告诉别人的接口名-->
    <service name="HelloServiceImpl" provider="java:RPC">
        <!--这个是 实现类-->
        <parameter name="className" value="com.efounder.spring.demo.HelloServiceImpl" />
        <!--这是是暴露的方法名   比如可以值暴露一个-->
        <parameter name="allowedMethods" value="sayHello" />
        <!--这是是暴露的方法名   也可以用* 表示暴露全部的public方法-->
        <!--<parameter name="allowedMethods" value="*" />-->
    </service>

    <transport name="http">
        <requestFlow>
            <handler type="URLMapper" />
        </requestFlow>
    </transport>

</deployment>

四、添加servlet过滤规则
新建com.efounder.spring.demo.WebServlet,继承AxisServlet。

/**
 * @ClassName WebServlet
 * @description: //TODO
 * @Author: tt
 * @Date: 2021/8/8 14:54
 */
import org.apache.axis.transport.http.AxisServlet;
@javax.servlet.annotation.WebServlet(
        urlPatterns =  "/services/*",
        loadOnStartup = 1,
        name = "AxisServlet"
)
public class WebServlet extends AxisServlet {

}

五、重写Axis的配置工厂信息(若想以jar包形式发布)
若想要以jar包形式发布,所以需要重写EngineConfigurationFactory类,否则会访问不到。新建org.apache.axis.configuration.EngineConfigurationFactoryServlet(包名必须是这个),继承EngineConfigurationFactoryDefault。更改的是getServerEngineConfig(ServletConfig cfg)方法

 /*
     * Copyright 2002-2004 The Apache Software Foundation.
     * 
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     * 
     *      http://www.apache.org/licenses/LICENSE-2.0
     * 
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.apache.axis.configuration;
    
    import org.apache.axis.AxisProperties;
    import org.apache.axis.ConfigurationException;
    import org.apache.axis.EngineConfiguration;
    import org.apache.axis.EngineConfigurationFactory;
    import org.apache.axis.components.logger.LogFactory;
    import org.apache.axis.server.AxisServer;
    import org.apache.axis.utils.ClassUtils;
    import org.apache.axis.utils.Messages;
    import org.apache.commons.logging.Log;
    
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletContext;
    import java.io.File;
    import java.io.InputStream;
    
    /**
     * This is a default implementation of ServletEngineConfigurationFactory.
     * It is user-overrideable by a system property without affecting
     * the caller. If you decide to override it, use delegation if
     * you want to inherit the behaviour of this class as using
     * class extension will result in tight loops. That is, your
     * class should implement EngineConfigurationFactory and keep
     * an instance of this class in a member field and delegate
     * methods to that instance when the default behaviour is
     * required.
     *
     * @author Richard A. Sitze
     * @author Davanum Srinivas (dims@apache.org)
     */
    public class EngineConfigurationFactoryServlet
        extends EngineConfigurationFactoryDefault
    {
        protected static Log log =
            LogFactory.getLog(EngineConfigurationFactoryServlet.class.getName());
    
        private ServletConfig cfg;
        
        /**
         * Creates and returns a new EngineConfigurationFactory.
         * If a factory cannot be created, return 'null'.
         * 
         * The factory may return non-NULL only if:
         *   - it knows what to do with the param (param instanceof ServletContext)
         *   - it can find it's configuration information
         * 
         * @see org.apache.axis.configuration.EngineConfigurationFactoryFinder
         */
        public static EngineConfigurationFactory newFactory(Object param) {
            /**
             * Default, let this one go through if we find a ServletContext.
             * 
             * The REAL reason we are not trying to make any
             * decision here is because it's impossible
             * (without refactoring FileProvider) to determine
             * if a *.wsdd file is present or not until the configuration
             * is bound to an engine.
             * 
             * FileProvider/EngineConfiguration pretend to be independent,
             * but they are tightly bound to an engine instance...
             */
            return (param instanceof ServletConfig)
                   ? new EngineConfigurationFactoryServlet((ServletConfig)param)
                   : null;
        }
    
        /**
         * Create the default engine configuration and detect whether the user
         * has overridden this with their own.
         */
        protected EngineConfigurationFactoryServlet(ServletConfig conf) {
            super();
            this.cfg = conf;
        }
    
        /**
         * Get a default server engine configuration.
         *
         * @return a server EngineConfiguration
         */
        public EngineConfiguration getServerEngineConfig() {
            return getServerEngineConfig(cfg);
        }
    
        /**
         * Get a default server engine configuration in a servlet environment.
         *
         * @param ctx a ServletContext
         * @return a server EngineConfiguration
         */
        private static 
                EngineConfiguration getServerEngineConfig(ServletConfig cfg) {
            
            ServletContext ctx = cfg.getServletContext();
            
            // Respect the system property setting for a different config file
            String configFile = cfg.getInitParameter(OPTION_SERVER_CONFIG_FILE);
            if (configFile == null)
                    configFile = 
                            AxisProperties.getProperty(OPTION_SERVER_CONFIG_FILE);
            if (configFile == null) {
                configFile = SERVER_CONFIG_FILE;
            }
            
            /**
             * Flow can be confusing.  Here is the logic:
             * 1) Make all attempts to open resource IF it exists
             *    - If it exists as a file, open as file (r/w)
             *    - If not a file, it may still be accessable as a stream (r)
             *    (env will handle security checks).
             * 2) If it doesn't exist, allow it to be opened/created
             * 
             * Now, the way this is done below is:
             * a) If the file does NOT exist, attempt to open as a stream (r)
             * b) Open named file (opens existing file, creates if not avail).
             */
    
            /*
             * Use the WEB-INF directory
             * (so the config files can't get snooped by a browser)
             */
            String appWebInfPath = "/WEB-INF";
    
            FileProvider config = null;
    
            String realWebInfPath = ctx.getRealPath(appWebInfPath);
    
            /**
             * If path/file doesn't exist, it may still be accessible
             * as a resource-stream (i.e. it may be packaged in a JAR
             * or WAR file).
             */
            if (realWebInfPath == null  ||
                !(new File(realWebInfPath, configFile)).exists())
            {
                String name = appWebInfPath + "/" + configFile;
                InputStream is = ctx.getResourceAsStream(name);
                if (is != null) {
                    // FileProvider assumes responsibility for 'is':
                    // do NOT call is.close().
                    config = new FileProvider(is);
                }
    
                if (config == null) {
                    log.error(Messages.getMessage("servletEngineWebInfError03",
                                                   name));
                }
            }
            
            /**
             * Couldn't get data  OR  file does exist.
             * If we have a path, then attempt to either open
             * the existing file, or create an (empty) file.
             */
            if (config == null  &&  realWebInfPath != null) {
                try {
                    config = new FileProvider(realWebInfPath, configFile);
                } catch (ConfigurationException e) {
                    log.error(Messages.getMessage("servletEngineWebInfError00"), e);
                }
            }
    
            /**
             * Fall back to config file packaged with AxisEngine
             */
            if (config == null) {
                log.warn(Messages.getMessage("servletEngineWebInfWarn00"));
                try {
                    InputStream is = 
                            ClassUtils.getResourceAsStream(AxisServer.class,
                                                           SERVER_CONFIG_FILE);
                    config = new FileProvider(is);
                } catch (Exception e) {
                    log.error(Messages.getMessage("servletEngineWebInfError02"), e);
                }
            }
    
            return config;
        }
    }

注意:我们需要修改的是getServerEngineConfig(ServletConfig cfg)方法,修改后的方法为:

    private static EngineConfiguration getServerEngineConfig(ServletConfig cfg) {
            String configFile = cfg.getInitParameter(OPTION_SERVER_CONFIG_FILE);
            if (configFile == null)
                configFile =
                        AxisProperties.getProperty(OPTION_SERVER_CONFIG_FILE);
            if (configFile == null) {
                configFile = SERVER_CONFIG_FILE;
            }
            String appWebInfPath = "/WEB-INF";
            //由于部署方式变更为jar部署,此处不可以使用改方式获取路径
    //        ServletContext ctx = cfg.getServletContext();
    //        String realWebInfPath = ctx.getRealPath(appWebInfPath);
            FileProvider config = null;
            String realWebInfPath = EngineConfigurationFactoryServlet.class.getResource(appWebInfPath).getPath();
            InputStream iss = ClassUtils.getResourceAsStream(EngineConfigurationFactoryServlet.class, appWebInfPath+"/" + SERVER_CONFIG_FILE);
            if (iss != null) {
                // FileProvider assumes responsibility for 'is':
                // do NOT call is.close().
                config = new FileProvider(iss);
            }
    
            if (config == null) {
                log.error(Messages.getMessage("servletEngineWebInfError03", ""));
            }
    
            /**
             * Couldn't get data  OR  file does exist.
             * If we have a path, then attempt to either open
             * the existing file, or create an (empty) file.
             */
            if (config == null && realWebInfPath != null) {
                try {
                    config = new FileProvider(realWebInfPath, configFile);
                } catch (ConfigurationException e) {
                    log.error(Messages.getMessage("servletEngineWebInfError00"), e);
                }
            }
    
            /**
             * Fall back to config file packaged with AxisEngine
             */
            if (config == null) {
                log.warn(Messages.getMessage("servletEngineWebInfWarn00"));
                try {
                    InputStream is =
                            ClassUtils.getResourceAsStream(AxisServer.class,
                                    SERVER_CONFIG_FILE);
                    config = new FileProvider(is);
    
                } catch (Exception e) {
                    log.error(Messages.getMessage("servletEngineWebInfError02"), e);
                }
            }
    
            return config;
        }

修改后的代码(可直接复制的)

/*
 * Copyright 2002-2004 The Apache Software Foundation.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.apache.axis.configuration;

import org.apache.axis.AxisProperties;
import org.apache.axis.ConfigurationException;
import org.apache.axis.EngineConfiguration;
import org.apache.axis.EngineConfigurationFactory;
import org.apache.axis.components.logger.LogFactory;
import org.apache.axis.server.AxisServer;
import org.apache.axis.utils.ClassUtils;
import org.apache.axis.utils.Messages;
import org.apache.commons.logging.Log;

import javax.servlet.ServletConfig;
import java.io.InputStream;

/**
 * This is a default implementation of ServletEngineConfigurationFactory.
 * It is user-overrideable by a system property without affecting
 * the caller. If you decide to override it, use delegation if
 * you want to inherit the behaviour of this class as using
 * class extension will result in tight loops. That is, your
 * class should implement EngineConfigurationFactory and keep
 * an instance of this class in a member field and delegate
 * methods to that instance when the default behaviour is
 * required.
 *
 * @author Richard A. Sitze
 * @author Davanum Srinivas (dims@apache.org)
 */
public class EngineConfigurationFactoryServlet
        extends EngineConfigurationFactoryDefault {
    protected static Log log =
            LogFactory.getLog(EngineConfigurationFactoryServlet.class.getName());

    private ServletConfig cfg;

    /**
     * Creates and returns a new EngineConfigurationFactory.
     * If a factory cannot be created, return 'null'.
     * <p>
     * The factory may return non-NULL only if:
     * - it knows what to do with the param (param instanceof ServletContext)
     * - it can find it's configuration information
     *
     * @see EngineConfigurationFactoryFinder
     */
    public static EngineConfigurationFactory newFactory(Object param) {
        /**
         * Default, let this one go through if we find a ServletContext.
         *
         * The REAL reason we are not trying to make any
         * decision here is because it's impossible
         * (without refactoring FileProvider) to determine
         * if a *.wsdd file is present or not until the configuration
         * is bound to an engine.
         *
         * FileProvider/EngineConfiguration pretend to be independent,
         * but they are tightly bound to an engine instance...
         */
        return (param instanceof ServletConfig)
                ? new EngineConfigurationFactoryServlet((ServletConfig) param)
                : null;
    }

    /**
     * Create the default engine configuration and detect whether the user
     * has overridden this with their own.
     */
    protected EngineConfigurationFactoryServlet(ServletConfig conf) {
        super();
        this.cfg = conf;
    }

    /**
     * Get a default server engine configuration.
     *
     * @return a server EngineConfiguration
     */
    public EngineConfiguration getServerEngineConfig() {
        return getServerEngineConfig(cfg);
    }

    /**
     * Get a default server engine configuration in a servlet environment.
     *
     * @param cfg a ServletContext
     * @return a server EngineConfiguration
     */
    private static EngineConfiguration getServerEngineConfig(ServletConfig cfg) {

        // Respect the system property setting for a different config file
        String configFile = cfg.getInitParameter(OPTION_SERVER_CONFIG_FILE);
        if (configFile == null)
            configFile =
                    AxisProperties.getProperty(OPTION_SERVER_CONFIG_FILE);
        if (configFile == null) {
            configFile = SERVER_CONFIG_FILE;
        }

        /**
         * Flow can be confusing.  Here is the logic:
         * 1) Make all attempts to open resource IF it exists
         *    - If it exists as a file, open as file (r/w)
         *    - If not a file, it may still be accessable as a stream (r)
         *    (env will handle security checks).
         * 2) If it doesn't exist, allow it to be opened/created
         *
         * Now, the way this is done below is:
         * a) If the file does NOT exist, attempt to open as a stream (r)
         * b) Open named file (opens existing file, creates if not avail).
         */

        /*
         * Use the WEB-INF directory
         * (so the config files can't get snooped by a browser)
         */
        String appWebInfPath = "/WEB-INF";
        //由于部署方式变更为jar部署,此处不可以使用改方式获取路径
//        ServletContext ctx = cfg.getServletContext();
//        String realWebInfPath = ctx.getRealPath(appWebInfPath);

        FileProvider config = null;
        String realWebInfPath = EngineConfigurationFactoryServlet.class.getResource(appWebInfPath).getPath();

        /**
         * If path/file doesn't exist, it may still be accessible
         * as a resource-stream (i.e. it may be packaged in a JAR
         * or WAR file).
         */
        InputStream iss = ClassUtils.getResourceAsStream(EngineConfigurationFactoryServlet.class, appWebInfPath+"/" + SERVER_CONFIG_FILE);
        if (iss != null) {
            // FileProvider assumes responsibility for 'is':
            // do NOT call is.close().
            config = new FileProvider(iss);
        }

        if (config == null) {
            log.error(Messages.getMessage("servletEngineWebInfError03", ""));
        }

        /**
         * Couldn't get data  OR  file does exist.
         * If we have a path, then attempt to either open
         * the existing file, or create an (empty) file.
         */
        if (config == null && realWebInfPath != null) {
            try {
                config = new FileProvider(realWebInfPath, configFile);
            } catch (ConfigurationException e) {
                log.error(Messages.getMessage("servletEngineWebInfError00"), e);
            }
        }

        /**
         * Fall back to config file packaged with AxisEngine
         */
        if (config == null) {
            log.warn(Messages.getMessage("servletEngineWebInfWarn00"));
            try {
                InputStream is =
                        ClassUtils.getResourceAsStream(AxisServer.class,
                                SERVER_CONFIG_FILE);
                config = new FileProvider(is);

            } catch (Exception e) {
                log.error(Messages.getMessage("servletEngineWebInfError02"), e);
            }
        }

        return config;
    }
}

六、配置Application
添加注解 @ServletComponentScan

@SpringBootApplication
@ServletComponentScan //扫描自定义的WebFilter和WebListener,否则无法扫描到
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}
  • 1
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
要实现Spring Boot整合Axis1.4实现WebService服务端,可以按照以下步骤进行: 1. 在pom.xml文件中添加Axis1.4依赖: ``` <dependency> <groupId>org.apache.axis</groupId> <artifactId>axis</artifactId> <version>1.4</version> </dependency> ``` 2. 创建一个WebService接口,并在接口上添加@WebService注解: ``` @WebService public interface UserService { String sayHello(String name); } ``` 3. 创建一个WebService接口的实现类,并在实现类上添加@WebService(endpointInterface = "com.example.demo.UserService")注解: ``` @WebService(endpointInterface = "com.example.demo.UserService") public class UserServiceImpl implements UserService { @Override public String sayHello(String name) { return "Hello, " + name + "!"; } } ``` 4. 在Spring Boot的配置文件application.properties中添加Axis1.4的配置: ``` # Axis1.4配置 axis.servletPath=/services/* ``` 5. 创建一个AxisServlet的注册类,并在类上添加@Configuration和@EnableWebMvc注解: ``` @Configuration @EnableWebMvc public class AxisServletRegistration { @Bean public ServletRegistrationBean<AxisServlet> axisServlet() { ServletRegistrationBean<AxisServlet> registration = new ServletRegistrationBean<>(new AxisServlet(), "/services/*"); registration.addInitParameter("axis.servicesPath", "/WEB-INF/services"); registration.addInitParameter("axis.wsddPath", "/WEB-INF/server-config.wsdd"); return registration; } } ``` 6. 启动Spring Boot应用程序,访问http://localhost:8080/services/UserService?wsdl,可以看到WebService服务端已经成功启动。 以上就是Spring Boot整合Axis1.4实现WebService服务端的全部步骤。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值