使用ajax将数据发布到Jax-RS

时间:2014-01-20 17:48:04

标签: java ajax web-services persistence jax-rs

我是Jax-RS的新手,我在从ajax使用我的网络服务时遇到了一些问题。我的get请求正在按原样运行,现在我正在尝试发布一些要保存到Oracle 11g数据库的数据,我的ajax调用只返回错误,这使得调试变得困难。

这是我的ajax电话

 function save(img)   // base64 encoded string
{


$.ajax({
    type: "POST",
    url: "http://192.168.42.179:8082/PotholeWebservice/webresources/entities.pothole/post",
    data: img,
    dataType: "json",
    success: function(data)
    {
        alert("saved to database");
    },
    error: function(textStatus, errorThrown)
    {
        alert("error in saving to database: " + textStatus + " " + errorThrown);
    }
});
}

这是我的jax-rs post方法

 @POST
@Path("post")
@Consumes({"application/xml", "application/json"})
public void create(@PathParam("paramImg") String paramImg) {

    Date date = new Date();
    BASE64Decoder decoder = new BASE64Decoder(); // decode base64 image to byte[]
    byte[] decodedBytes = null;
    try {
        decodedBytes = decoder.decodeBuffer(paramImg);
    } catch (IOException ex) {
        Logger.getLogger(PotholeFacadeREST.class.getName()).log(Level.SEVERE, null, ex);
    }

    Pothole entity = new Pothole(decodedBytes, date);
    super.create(entity);

}

超级

// super.create
public void create(T entity) {
    getEntityManager().persist(entity);

}

我的班级

public class Pothole implements Serializable {
private static final long serialVersionUID = 1L;
@Basic(optional = false)
@NotNull
@Lob
@Column(name = "IMAGE")
private byte[] image;
// @Max(value=?)  @Min(value=?)//if you know range of your decimal fields consider using these annotations to enforce field validation

@Id 
@GeneratedValue(generator = "ID_Seq")
@SequenceGenerator(name="IDSeq",sequenceName="ID_SEQ", allocationSize=1) 
@Basic(optional = false)
@NotNull
@Column(name = "ID")
private BigDecimal id;

@Basic(optional = false)
@NotNull
@Column(name = "PDATE")
@Temporal(TemporalType.TIMESTAMP)
private Date pdate;

public Pothole() {
}

public Pothole(BigDecimal id) {
    this.id = id;
}

public Pothole( byte[] image, Date pdate) {

    this.image = image;
    this.pdate = pdate;
}

public byte[] getImage() {
    return image;
}

public void setImage(byte[] image) {
    this.image = image;
}

public BigDecimal getId() {
    return id;
}

public void setId(BigDecimal id) {
    this.id = id;
}

public Date getPdate() {
    return pdate;
}

public void setPdate(Date pdate) {
    this.pdate = pdate;
}

2 个答案:

答案 0 :(得分:0)

也许您仍然没有启动并运行Web服务,请使用:

@GET
public String echo() {
    return "My service is working! > " + new Date().toString();
}

使用网络浏览器只是为了确保您可以使用Get请求访问它。

如果您没有收到回声,那么该服务很可能尚未发布。也许你没有ApplicationRestConfig,让我举个例子:

/**
 * Initialize the rest resources, here you should add ALL the REST classes.
 */
@ApplicationPath("/rest")
public class ApplicationRestConfig extends Application {

    @Override
    public Set<Class<?>> getClasses() {
        return new HashSet<>(Arrays.asList(MyServiceRest.class, OtherRestService.class));
    }
}

如果即使在所有这些检查仍无效后,请查看本教程&gt; http://coenraets.org/blog/2011/12/restful-services-with-jquery-and-java-using-jax-rs-and-jersey/

答案 1 :(得分:0)

标有paramImg的方法参数@PathParam("paramImg")是一个空字符串,因为您没有@Path("post")中定义的相应模板(即@Path("post\{paramImg}")。这可能是一个问题。

如果要在资源方法中注入请求实体,请省略注释,JAX-RS将确保注入实体。

启用LoggingFilter(查看如何查看此article)以查看服务器端的内容。请发布日志。