Lius
2024-06-18 3b2decedde042efe481330a20981a374efdf5978
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package org.jeecg.modules.mdc.util;
 
import org.apache.cxf.Bus;
import org.apache.cxf.bus.CXFBusFactory;
import org.apache.cxf.endpoint.EndpointImplFactory;
import org.apache.cxf.endpoint.dynamic.DynamicClientFactory;
import org.apache.cxf.jaxws.support.JaxWsEndpointImplFactory;
 
import java.io.File;
import java.util.List;
 
/**
 * @author Lius
 * @date 2024/6/14 11:07
 * 注:解决此(错误:编码GBK的不可映射字符)问题
 */
public class JaxWsDynamicClientFactory extends DynamicClientFactory {
 
    protected JaxWsDynamicClientFactory(Bus bus) {
        super(bus);
    }
 
    @Override
    protected EndpointImplFactory getEndpointImplFactory() {
        return JaxWsEndpointImplFactory.getSingleton();
    }
 
    protected boolean allowWrapperOps() {
        return true;
    }
 
    /**
     * Create a new instance using a specific <tt>Bus</tt>.
     *
     * @param b the <tt>Bus</tt> to use in subsequent operations with the
     *            instance
     * @return the new instance
     */
    public static JaxWsDynamicClientFactory newInstance(Bus b) {
        return new JaxWsDynamicClientFactory(b);
    }
 
    /**
     * Create a new instance using a default <tt>Bus</tt>.
     *
     * @return the new instance
     */
    public static JaxWsDynamicClientFactory newInstance() {
        Bus bus = CXFBusFactory.getThreadDefaultBus();
        return new JaxWsDynamicClientFactory(bus);
    }
 
    /**
     * 覆写父类的该方法<br/>
     * 注:解决此(错误:编码GBK的不可映射字符)问题
     *
     * @return
     */
    @Override
    protected boolean compileJavaSrc(String classPath, List<File> srcList, String dest) {
        org.apache.cxf.common.util.Compiler javaCompiler
                = new org.apache.cxf.common.util.Compiler();
 
        // 设置编译编码格式(此处为新增代码)
        javaCompiler.setEncoding("UTF-8");
 
        javaCompiler.setClassPath(classPath);
        javaCompiler.setOutputDir(dest);
        javaCompiler.setTarget("1.6");
 
        return javaCompiler.compileFiles(srcList);
    }
}