- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
http://vertx.io/docs/vertx-service-proxy/java/
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-service-proxy</artifactId>
<version>3.5.0</version>
<classifier>processor</classifier>
</dependency>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessors>
<annotationProcessor>io.vertx.serviceproxy.ServiceProxyProcessor</annotationProcessor>
</annotationProcessors>
</configuration>
</plugin>
ServiceProxyProcessor
可从 IDE 解析
我错过了什么吗?
[错误]编译错误:[信息] ---------------------------------------------------------- --------------[错误]找不到注释处理器“io.vertx.serviceproxy.ServiceProxyProcessor”
--
我仍然可以完成这项工作
<plugin>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin</artifactId>
<version>3.3.2</version>
<executions>
<execution>
<id>process</id>
<goals>
<goal>process</goal> <!-- see the "vertx-service-proxy" -->
</goals>
<!-- http://maven.apache.org/ref/3.5.0/maven-core/lifecycles.html -->
<phase>generate-sources</phase>
<configuration>
<!-- source output directory -->
<outputDirectory>src/main/generated</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
不指定ServiceProxyProcessor
但我不确定这是正确的做法,因为它不在文档中。
最佳答案
您不需要配置编译器插件,pom 的一个工作示例可能是:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
<version>3.5.0</version>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-service-proxy</artifactId>
<version>3.5.0</version>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-codegen</artifactId>
<version>3.5.0</version>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-service-proxy</artifactId>
<version>3.5.0</version>
<scope>provided</scope>
<classifier>processor</classifier>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
关于java - 未找到注释处理器 'io.vertx.serviceproxy.ServiceProxyProcessor',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47342453/
我有一个公共(public) ASP.NET Core 服务,有 5 个实例,每个服务结构群集节点上都有一个实例。我还有一个只有一个实例的辅助服务,这是主要实例,因为这是一项有状态服务。我想从工作人员
有很多类似的问题,但它们都涉及服务器端缓慢 - 这都是关于客户端问题。 第一次调用需要 900 毫秒。第二次调用需要 20 毫秒。 我缩小了第一次调用 serviceProxy.Method() 时的
http://vertx.io/docs/vertx-service-proxy/java/ io.vertx vertx-service-proxy 3.5.0 processor
我在 Service Fabric 6 上有一个 Asp.net Core 2.0 无状态服务和一个 Asp.net Core 2.0 有状态服务,分区数为 10。 我跟着这个教程 https://d
如何在调用 Web 服务方法时显示 ZSI.ServiceProxy 生成的 SOAP 消息以及来自 Web 服务的响应? 最佳答案 这里有一些 documentation在 ServiceProxy
我是 Microsoft Azure Service Fabric 的新手。对于我的硕士学位,我必须在服务结构中开发微服务方法原型(prototype)。经过几个小时的研究,我的问题仍然没有得到解决。
我是一名优秀的程序员,十分优秀!