找不到媒体type=application/xml、type=class java.util.HashMap$Values的MessageBodyWriter [英] MessageBodyWriter not found for media type=application/xml, type=class java.util.HashMap$Values

查看:43
本文介绍了找不到媒体type=application/xml、type=class java.util.HashMap$Values的MessageBodyWriter的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的API方法无法将对象转换为XML,但它可以转换为JSON。当方法返回类型为Collection(Map)时,它转换为XML,没有任何运行时异常(找不到MessageBodyWriter),但是当使用Response作为返回类型时,它会导致运行时异常。我在这里提到代码。我认为我的代码中没有任何问题,只是依赖项有问题。

package lk.ac.jfn.vau.MyDBapi.Model;

import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
public class Department {
    private long Id;
    private String Name;
    private String Location;
    
    public Department() {
        
    }
    
    public Department(long id, String name, String location) {
        super();
        Id = id;
        Name = name;
        Location = location;
    }

    public long getId() {
        return Id;
    }

    public void setId(long id) {
        Id = id;
    }

    public String getName() {
        return Name;
    }

    public void setName(String name) {
        Name = name;
    }

    public String getLocation() {
        return Location;
    }

    public void setLocation(String location) {
        Location = location;
    }
    
    

}

package lk.ac.jfn.vau.MyDBapi.Repo;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;

public class Repo {
    private static final String DB_Driver = "com.mysql.jdbc.Driver";
    private static final String DB_Connection = "jdbc:mysql://localhost:3306/";
    private static final String DB_Name = "departmentapi";
    private static final String DB_User = "root";
    private static final String DB_Password = "";

    public static void getDriver() {
        try {
            Class.forName(DB_Driver);
            System.out.println("Driver found");
        } catch (ClassNotFoundException e) {
            System.out.println("Driver not found " + e.getMessage());
        }
    }

    public static Connection getConnection() {
        Connection connection = null;

        try {
            connection = DriverManager.getConnection(DB_Connection + DB_Name, DB_User, DB_Password);
            System.out.println("Database Connected");
        } catch (SQLException e) {
            System.out.println(e.getMessage());
        }

        return connection;
    }

    public ResultSet get(String query, Connection connection) {
        ResultSet resultSet = null;
        try {
                Statement statement = connection.createStatement();
                resultSet = statement.executeQuery(query);

        } catch (SQLException e) {
            System.out.println(e.getMessage());
        }
        return resultSet;
    }
}

package lk.ac.jfn.vau.MyDBapi.Repo;

import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;

import lk.ac.jfn.vau.MyDBapi.Model.Department;

public class DepartmentRepo extends Repo {
    Connection connection=null;
    public DepartmentRepo() {
        getDriver();
        connection = getConnection();
    }

    Map<Long, Department>map=new HashMap<Long, Department>();
    
    public Collection<Department> getAll(){
        ResultSet resultSet=get("select * from department", connection);
        try {
            while(resultSet.next()) {
                Department department=new Department(resultSet.getLong(1), resultSet.getString(2), resultSet.getString(3));
                map.put(department.getId(), department);
            }
        } catch (SQLException e) {
            System.out.println(e.getMessage());
        }
        
        return map.values();
    }
    
}

package lk.ac.jfn.vau.MyDBapi;

import java.util.Collection;

import javax.ws.rs.Consumes;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.Status;

import lk.ac.jfn.vau.MyDBapi.Model.Department;
import lk.ac.jfn.vau.MyDBapi.Repo.DepartmentRepo;

@Path("/dept")
@Produces(value = {MediaType.APPLICATION_JSON,MediaType.APPLICATION_XML})
@Consumes(MediaType.APPLICATION_JSON)
public class DepartmentResource {
    private DepartmentRepo repo=new DepartmentRepo();
    @GET
    public Response getDepartments() {
        Collection<Department> departments = repo.getAll();
        if(!departments.isEmpty()) {
            return Response.status(Status.FOUND).entity(departments).build();
        }
        return Response.status(Status.NOT_FOUND).entity("Nothing Found").build();
    }

}

POM.xml

<dependencies>
        <dependency>
            <groupId>org.glassfish.jersey.containers</groupId>
            <artifactId>jersey-container-servlet-core</artifactId>
            <!-- use the following artifactId if you don't need servlet 2.x compatibility -->
            <!-- artifactId>jersey-container-servlet</artifactId -->
        </dependency>
        <dependency>
            <groupId>org.glassfish.jersey.media</groupId>
            <artifactId>jersey-media-json-jackson</artifactId>
        </dependency>
        <dependency>
            <groupId>org.glassfish.jaxb</groupId>
            <artifactId>jaxb-runtime</artifactId>
            <version>2.3.2</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.34</version>
        </dependency>
    </dependencies>

推荐答案

对于JAXB(XML提供程序),您需要使用GenericEntity

GenericEntity<Collection<Department>> entity
    = new GenericEntity<Collection<Department>>(departments){};
return Response.ok(entity).build();
您需要这样做的原因是JAXB需要知道类型信息才能序列化。当您只返回泛型实体时,而不是Response,泛型类型信息在方法签名中

@GET
public Collection<Department> getDepartments() {}

使用Response时,由于类型擦除,常规信息不可用。所以JAX-RS允许使用GenericEntity。但是您不能只使用实例,因为类型擦除不允许这样做。您实际上需要使用匿名类

new GenericEntity<Collection<Department>>(departments){}

注意末尾的花括号。这是一个匿名类。通过反射,您可以从此匿名类获取泛型类型参数。

这篇关于找不到媒体type=application/xml、type=class java.util.HashMap$Values的MessageBodyWriter的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆