- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们将 CXF 用于 SOAP 客户端,并使用 cxf-codegen-plugin (wsdl2java) maven 插件(我认为这只是 wsd2java 的包装器)生成客户端。我们通常习惯在每次生成后给每个服务添加@Logging(pretty=true)注解。
有没有办法以某种方式自动生成此注释?
最佳答案
不知道是否有任何插件可以更改 Log 语句,但我想最简单的方法是创建将在 cxf-code gen 插件之后运行的插件。
如果您使用 Eclipse,请遵循以下步骤。
选择新项目->maven项目->并在新maven项目中选择原型(prototype)
groupId:org.apache.maven.achetypes
artifactId:maven-achetype-plugin
添加 commons-io dependentecny 并将版本更改为 1.0.0.0
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
编辑 MyMojo.java
package com.kp.plugin.logcodegen;
import java.io.File;
import java.io.IOException;
import java.util.Iterator;
import java.util.List;
import java.util.ListIterator;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.filefilter.FileFileFilter;
import org.apache.commons.io.filefilter.TrueFileFilter;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
@Mojo(name = "code-gen", defaultPhase = LifecyclePhase.GENERATE_SOURCES)
public class MyMojo extends AbstractMojo {
@Parameter(defaultValue = "${project.build.directory}")
private File outputDirectory;
@Parameter(defaultValue = "${basedir}")
private File baseDir;
@Parameter(defaultValue = "src/main/java", property = "sourceDirecory")
private String sourceDirectory;
@Parameter(defaultValue = "", property = "packageNames")
private String packageNames;
@Parameter(defaultValue = "", property = "addImport")
private String addImport;
@Parameter(defaultValue = "", property = "removeImport")
private String removeImport;
@Parameter(defaultValue = "", property = "defineLogInstance")
private String defineLogInstance;
@Parameter(defaultValue = "", property = "removeLogInstance")
private String removeLogInstance;
public void execute() throws MojoExecutionException {
System.out.println("-------------------");
System.out.println("Adding logs to java classes");
System.out.println("--------------------");
System.out.println("Input package is:" + packageNames);
System.out.println("BaseDir is " + baseDir.getAbsolutePath());
StringBuilder sourceDir = new StringBuilder(baseDir.getAbsolutePath());
sourceDir.append("/");
sourceDir.append(sourceDirectory);
if (!packageNames.isEmpty()) {
sourceDir.append("/");
for (final String packageName : packageNames.split(",")) {
String path = sourceDir.toString() + packageName.replaceAll("\\.", "/");
File dest = new File(path);
if (dest.isDirectory()) {
Iterator<File> it = FileUtils.iterateFiles(dest, FileFileFilter.FILE, TrueFileFilter.INSTANCE);
while (it.hasNext()) {
try {
processFile(it.next());
} catch (IOException e) {
e.printStackTrace();
}
}
} else {
System.out.append("Path is not directory " + path);
}
}
} else {
System.out.println("No packages to parse");
}
}
private void processFile(final File file) throws IOException {
List<String> contents = FileUtils.readLines(file);
ListIterator<String> it = contents.listIterator();
String className = "";
while (it.hasNext()) {
String str = it.next();
// Remove import
if (str != null && !str.isEmpty() && str.contains(removeImport)) {
it.remove();
it.add(addImport);
}
if (str != null && !str.isEmpty()) {
Pattern pat = Pattern.compile("\\s*(public|private)\\s+class\\s+(\\w+)");
Matcher matcher = pat.matcher(str);
if (matcher.find()) {
className = matcher.group(2);
}
}
// change the instance
if (str != null && !str.isEmpty() && str.contains(removeLogInstance)) {
it.remove();
it.add(defineLogInstance + className + ".class);");
}
}
FileUtils.writeLines(file, contents, false);
}
}
运行maven安装
现在将插件添加到您的项目中
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<versionRange>[2.7,)</versionRange>
<goals>
<goal>wsdl2java</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute />
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>com.kp.plugin</groupId>
<artifactId>logcode-gen</artifactId>
<versionRange>[1.0.0.0,)</versionRange>
<goals>
<goal>code-gen</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler.version}</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<encoding></encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>${cxf.version}</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<sourceRoot>${basedir}/src/main/java</sourceRoot>
<wsdlOptions>
<wsdlOption>
<wsdl>${basedir}/src/main/resources/wsdl/kpws.wsdl</wsdl>
<extraargs>
<extraarg>-impl</extraarg>
</extraargs>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.kp.plugin</groupId>
<artifactId>logcode-gen</artifactId>
<version>1.0.0.0</version>
<executions>
<execution>
<id>codegen-resouces</id>
<phase>generate-sources</phase>
<goals>
<goal>code-gen</goal>
</goals>
</execution>
</executions>
<configuration>
<packageNames>com.kp.webservices.services</packageNames>
<addImport>import org.slf4j.Logger;</addImport>
<removeImport>java.util.logging.Logger</removeImport>
<removeLogInstance>private static final Logger LOG</removeLogInstance>
<defineLogInstance>private static final Logger LOG = org.slf4j.LoggerFactory.getLogger(</defineLogInstance>
</configuration>
</plugin>
</plugins>
注意
关于java - CXF:如何使用wsdl2java生成@Logging注释?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25129731/
我将Eclipse Helios Service Release 2版本用于apache cxf。当我转到windo->首选项-> Web服务-> CXF 2.x首选项,并设置cxf运行时时,版本和类
我是任何开放框架的新手(我是基于 java 的解决方案工程师)并试图构建一个 cxf 项目。 我知道我需要 applicationContext.xml文件和内容之类的
我想为不同的目的注册不同的类,以便在同一阶段调用 (Phase.PRE_INVOKE)。是否可以? 最佳答案 看这里http://cxf.apache.org/docs/interceptors.ht
我想使用 wsdl2java(CXF) 命令生成自定义包。 我的 WSDL 结构是: wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/w
我在通过 JAXRSClientFactoryBean.create 创建的 CXF 中有一个 JAX-RS 客户端。如何设置连接/接收超时? 我想我需要掌握管道,但不知道如何操作。这个项目没有使用
鉴于来自 fuse 源的 apache-servicemix-4.4.1-fuse-00-08 的“cxf-osgi”示例,使用 maven 3.0.3 构建,将其部署到 apache karaf 2
这个问题在这里已经有了答案: How do I fix a NoSuchMethodError? (33 个答案) 关闭 29 天前。 我刚刚尝试通过 Maven 使用 Apache CXF 和 S
我正在尝试使用 Apache CXF 开发一个 API 调用,该调用会随请求一起接收附件。我遵循了 this 教程,这就是我到目前为止所得到的。 @POST @Path("/upload") @Req
'org.apache.cxf.tools.wsdlto.WSDLToJava' 将 wsdl 转换为 java 类。 它是在内部使用 JAXB 吗?为什么这个命令能够生成类似于“xjc”创建的类?有
我已经使用 CXF 和 Spring 开发了一个 Java Web 服务。 由于安全原因,我想隐藏 WSDL,尽管 WS 仍然可用。 有没有办法使用 CXF 做到这一点? 最佳答案 您可以在 web.
我有一个生成的 JAXB 类(来自 XSD)。我能够以 XML 和 JSON 的形式返回,但是一旦我将 text/html 添加到我的 Produces 注释中,我就会得到: "No message
我创建了一个非常简单的基于 cxf 的非 spring Servlet,它加载了一个 javax.ws.rs.Application类型。 这是 web.xml: CXFSe
我正在使用 JBOSS EAP 6.2 来部署 restful web 服务。 restful web 服务使用 apache cxf,它取自 jboss eap。目前它使用 jar cxf-api-
我有一个服务方法定义为: public JaxbList getDeal() { List deals = new ArrayList(); Deal type = new Deal(
我需要将 wadl 转换为 java pojo,为此我已经下载了 apache cxf 3.0.1 版本。但是当我在命令提示符下运行 wadl2java bat 文件时,出现以下异常 D:\softw
这个问题在这里已经有了答案: 9年前关闭。 Possible Duplicate: Which maven2 artifacts are necessary to build a WS with CX
我想将一个简单的 CXF Jax-Ws 服务器部署到 ServiceMix。它只是一个同时具有服务接口(interface)和 impl 类的 OSGI 包。我需要将它部署到不同的 ServiceMi
是否可以在 wso2 ESB 中部署 CXF Web 服务? 目前我已经开始从 WSO2 User Guide 引用 wso2 的文档。我想将现有的 CXF Web 服务部署到 ESB。因此,有关这方
我想了解 cxf-bundle和 cxf-bundle-jaxrs jar 。它们是两个不同的 jar ,还是前者本身包含后者? 谢谢,巴蒂亚 最佳答案 前者包含后者。 但是,您实际上不应该使用其中任
我已经built and deployed a custom web services consumer in Java on Domino using the available CXF frame
我是一名优秀的程序员,十分优秀!