- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在学习 pluralsight.com 上关于如何设置 grizzly 服务器和创建 rest api 的教程。如果我的方法@produces plane text = 那么一切正常,但是如果我有 api 方法返回一个 json 文件而不是我得到
Pom.file >>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.plurasight</groupId>
<artifactId>async-rest</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>async-rest</name>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey</groupId>
<artifactId>jersey-bom</artifactId>
<version>${jersey.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-grizzly2-http</artifactId>
</dependency>
<!-- uncomment this to get JSON support:
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-moxy</artifactId>
</dependency>
-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<inherited>true</inherited>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>com.plurasight.Main</mainClass>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<jersey.version>2.7</jersey.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
Java 类文件:
BookDao
public class BookDao {
private HashMap<String, Book> books;
BookDao() {
books = new HashMap<String, Book>();
Book book1 = new Book();
book1.setId("1");
book1.setAuthor("Gino");
book1.setTitle("Gino's book1");
book1.setAspn("1234");
book1.setPublishedDate(new Date());
Book book2 = new Book();
book1.setId("2");
book1.setAuthor("Gino2");
book1.setTitle("Gino's book2");
book1.setAspn("2234");
book1.setPublishedDate(new Date());
Book book3 = new Book();
book1.setId("3");
book1.setAuthor("Gino");
book1.setTitle("Gino's book1");
book1.setAspn("3234");
book1.setPublishedDate(new Date());
books.put(book1.getId(), book1);
books.put(book2.getId(), book2);
books.put(book3.getId(), book3);
}
List<Book> getBooks() {
List<Book> list = new ArrayList<Book>(books.values());
return list;
}
}
图书资源:
@Path("/books")
public class BookResource {
BookDao dao = new BookDao();
@GET
@Produces(MediaType.APPLICATION_JSON)
public Response getBooks() {
System.out.println("PRINTLINE FROM BOOKS API");
// GenericEntity<List<Book>> entity = new GenericEntity<List<Book>>( dao.getBooks() ){};
GenericEntity<List<Book>> entity = new GenericEntity<List<Book>>(dao.getBooks()) {
};
return Response.ok(entity).build();
}
}
主类:
public class Main {
public static final String BASE_URI = "http://localhost:8080/myapp/";
public static HttpServer startServer() {
final ResourceConfig rc = new ResourceConfig().packages("com.plurasight");
return GrizzlyHttpServerFactory.createHttpServer(URI.create(BASE_URI), rc);
}
public static void main(String[] args) throws IOException {
final HttpServer server = startServer();
System.out.println(String.format("Jersey app started with WADL available at "
+ "%sapplication.wadl\nHit enter to stop it...", BASE_URI));
System.in.read();
server.stop();
}
}
wadl的回应
<application xmlns="http://wadl.dev.java.net/2009/02">
<doc xmlns:jersey="http://jersey.java.net/" jersey:generatedBy="Jersey: 2.7 2014-03-12 18:11:31"/>
<doc xmlns:jersey="http://jersey.java.net/" jersey:hint="This is simplified WADL with user and core resources only. To get full WADL with extended resources use the query parameter detail. Link: http://localhost:8080/myapp/application.wadl?detail=true"/>
<grammars/>
<resources base="http://localhost:8080/myapp/">
<resource path="/books">
<method id="getBooks" name="GET">
<response>
<representation mediaType="application/json"/>
</response>
</method>
</resource>
<resource path="myresource">
<method id="getIt" name="GET">
<response>
<representation mediaType="text/plain"/>
</response>
</method>
</resource>
</resources>
</application>
响应/getBooks api
PRINTLINE FROM BOOKS API
Oct 31, 2014 11:11:58 AM org.glassfish.jersey.message.internal.WriterInterceptorExecutor$TerminalWriterInterceptor aroundWriteTo
SEVERE: MessageBodyWriter not found for media type=application/json, type=class java.util.ArrayList, genericType=java.util.List<com.plurasight.Book>.
最佳答案
Cássio Mazzochi Molin s评论是正确的!
您需要使用 GenericEntity
:
Represents a response entity of a generic type T.
Normally type erasure removes generic type information such that a Response instance that contains, e.g., an entity of typeList<String>
appears to contain a rawList<?>
at runtime.
因此你需要实现类似的东西:
@GET
@Produces(MediaType.APPLICATION_JSON)
public Response getDrivers() {
System.out.println("printline from drivers api");
GenericEntity<List<Driver>> entity = new GenericEntity<List<Driver>>( dao.getDrivers() ){};
return Response.ok(entity).build();
}
编辑 (更新问题)
除了您的依赖项,我没有发现任何问题。请加 MessageBodyWriter/-Reader
通过添加正确的依赖项来支持。
我在 build 中使用的资源(Tomcat 7)是:
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-server</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.bundles</groupId>
<artifactId>jaxrs-ri</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-processing</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jackson</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-multipart</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-moxy</artifactId>
</dependency>
祝你有美好的一天......
关于java - Grizzly 在 MediaType.Application_JSON 上失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26667375/
我看到 @products 注释允许我传递单个字符串和字符串列表。所以我只是想知道这是如何在java中完成的,如果我需要使用允许以下行为的方法来实现它,我该怎么做?或者这个注释是特定的,所以我们不能在
我需要创建一个 REST 服务(Jersey),它接受 header 为“application/com.foo+xml”(+json,如果是 JSON mime 类型)。 有什么办法可以拥有吗?@P
我有一个使用 XML 和 JSON 的 Web 服务。 输出当前始终采用 XML 格式。 是否可以使用与所使用的 MediaType 相同的 MediaType 生成响应? 我需要的是: 请求是 XM
一旦我得到这个问题 Latest Jersey example does not work 的答案,我就遇到了另一个奇怪的问题: 服务器,GET 方法工作正常。我测试并添加了一些测试代码 hellow
我正在使用 Jersey 启用 JacksonFeature 编写 REST 客户端,用于强制我指定其自定义命名内容类型的 Web 服务,即使它只是常规 JSON。换句话说,当我这样做时: Reque
我正在使用 ReSTLet 来实现一个简单的 RESTful API,它为我提供了一个 org.reSTLet.data.MediaType 作为 ContentType。但是,我正在尝试使用其他一些
我使用 symfony 3.4 和奏鸣曲媒体包。在表单中使用 MediaType 效果很好,如下所示: $this->builder->->add('document', MediaType::cla
我正在使用 ReSTLet 构建某种代理服务器,但是我遇到了一个问题,即没有根据客户端请求自动确定 MediaType 的方法。 这是我的代码: Representation entity = nul
创建多部分/相关请求时。我们需要在 Content-Type 字符串中添加一个额外的 type=MIME_TYPE 内容类型应该是这样的 Content-Type: multipart/related
我的 SpringBoot 应用程序向外部 API 发出 HTTP 请求,所有这些都使用/生成 JSON。默认情况下,我的应用程序使用 Jackson 进行数据绑定(bind),并且所有 HTTP 请
6天前,我问了这个问题: how to select from filtervalues where genre comma delimited values contain only what is
我创建了一个示例客户端/服务器应用程序来熟悉 Spring Webflux/Reactor Netty。现在,当响应包含 Flux 并且媒体类型为“文本/事件流”时,我对客户端的行为有点困惑。我可以看
我有 Spring Rest Controller ,如下: @RestController @RequestMapping(value = "/v1/files") public class Dat
我创建了一个使用 REST 服务器进行 CRUD 操作的 Web 应用程序。我使用 java Jersey 和 gradle。当我执行 POST 操作时,我以 JSON 格式发送对象,如下所示: To
我只使用照片模式,但从 2019 年 Spring 开始,苹果商店要求获得微观许可。当用户只使用照片时,授予 micro 权限会非常困惑。这个问题有什么解决方法吗? 最佳答案 可能需要麦克风权限,因为
我正在构建我的第一个 API。 GET 请求有效,但我陷入了 POST 请求,并出现错误 415 不支持的媒体类型。经过一番查找和重写代码,仍然失败。有人明白为什么吗?参数值为: -String us
我目前正在开发一个由其他团队维护的项目,现在我需要维护它。当我完成该项目时,我发现了以下一些内容: 在 jax-rs Controller 中,它由 @Consumes(MediaType.APPLI
我遇到了一个奇怪的问题。我有一个 Web 项目(java 服务),我用 ANT 构建它。然而由于某些原因,构建系统不得不更改为Maven。 使用 Maven 构建后,我将 war 文件部署到 tomc
我目前正在开发一些 RESTful API 的版本 2,为了保持与版本 1 的兼容性,我想将该版本作为媒体类型参数添加到所有请求/响应中。 版本1:接受:application/json、applic
如何为具有自定义 MediaType 的实体发送 GET 请求? 例如,我想检索 MyUserDTO 并将 MediaType 设置为 application/user+yml。 现在我有两个独立的
我是一名优秀的程序员,十分优秀!