JAX-RS アノテーションを使用していますが、@BeanParam に問題があります。私は Wildfly-Swarm と Maven を使用しています。次の行は私のエラーの一部です:
2017-05-02 09:57:39,513 情報 [org.wildfly.swarm.runtime.deployer] (メイン) e15735ec-96f3-42f3-be84-4dbd08e05e0d.war 2017-05-02 09:57:39,543 情報 [org .jboss.as.server.deployment] (MSC サービススレッド 1-7) WFLYSRV0027: "e15735ec-96f3-42f3-be84-4dbd08e05e0d.war" のデプロイメントを開始しています (ランタイム名: "e15735ec-96f3-42f3-be84-4dbd08e05e0d .war") 2017-05-02 09:57:40,419 警告 [org.jboss.as.dependency.private] (MSC サービス スレッド 1-4) WFLYSRV0018: 展開 "deployment.e15735ec-96f3-42f3-be84-4dbd08e05e0d. war" はプライベート モジュール ("org.jboss.jts:main") を使用しており、将来のバージョンでは予告なしに変更または削除される可能性があります。2017-05-02 09:57:40,488 INFO [org.jboss.weld.deployer] (MSC サービス スレッド 1-4) WFLYWELD0003: 溶接配置 e15735ec-96f3-42f3-be84-4dbd08e05e0d を処理しています。
私のpom.xml:
<modelVersion>4.0.0</modelVersion>
<groupId>com.test.example</groupId>
<artifactId>ws-be-example1</artifactId>
<name>ws-be-example1</name>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<version.wildfly.swarm>2016.8.1</version.wildfly.swarm>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<failOnMissingWebXml>false</failOnMissingWebXml>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.wildfly.swarm</groupId>
<artifactId>bom-all</artifactId>
<version>${version.wildfly.swarm}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>
<!-- Wildfly Swarm Fractions -->
<dependency>
<groupId>org.wildfly.swarm</groupId>
<artifactId>logging</artifactId>
</dependency>
<dependency>
<groupId>org.wildfly.swarm</groupId>
<artifactId>jaxrs-cdi</artifactId>
</dependency>
<dependency>
<groupId>org.wildfly.swarm</groupId>
<artifactId>swagger</artifactId>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>3.4.2</version>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1</version>
</dependency>
</dependencies>
<build>
<finalName>ws-be-example1</finalName>
<plugins>
<plugin>
<groupId>org.wildfly.swarm</groupId>
<artifactId>wildfly-swarm-plugin</artifactId>
<version>${version.wildfly.swarm}</version>
<configuration>
<mainClass>com.test.example.Main</mainClass>
<properties>
<swarm.http.port>3001</swarm.http.port>
<swarm.debug.port>5005</swarm.debug.port>
</properties>
<environment>
<EXAMPLE2_HOST>localhost</EXAMPLE2_HOST>
<EXAMPLE2_PORT>8082</EXAMPLE2_PORT>
<EXAMPLE2_CONTEXT>/example2/frame</EXAMPLE2_CONTEXT>
</environment>
</configuration>
<executions>
<execution>
<goals>
<goal>package</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
私の豆:
package com.test.example.models;
import javax.ws.rs.FormParam;
public class User {
@FormParam("nombre")
private String nombre;
@FormParam("apellido1")
private String apellido1;
@FormParam("apellido2")
private String apellido2;
@FormParam("direccion")
private String direccion;
public User(String nombre, String apellido1, String apellido2, String direccion) {
this.nombre = nombre;
this.apellido1 = apellido1;
this.apellido2 = apellido2;
this.direccion = direccion;
}
public String getNombre() {
return nombre;
}
public String getApellido1() {
return apellido1;
}
public String getApellido2() {
return apellido2;
}
public String getDireccion() {
return direccion;
}
}
次のように、エンドポイントに before クラスを挿入しています。
@Path("/test")
@POST
@Produces(MediaType.APPLICATION_JSON)
public Response prueba(@BeanParam User user){
return Response.ok().build();
}
あなたの助けに感謝する前に:)