您好我有一个简单的休息服务:
@POST
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public Product createProduct(Product product) {
if (!(productDao.findByName(product.getProductName()).isEmpty())) {
//?????
} else {
productDao.create(product);
//?????
}
return product;
}
当输入名称不正确且方法findByName返回非null时,我希望从我的rest服务方法返回到仅角度信息,例如“Product exists”。当方法findByName返回null并且创建了product时,我想从我的方法返回Product到Angular controller。如何处理?返回实体和信息?
我在角度控制器中处理的是什么?当我返回实体时控制器下面很好,但我现在不知道为什么处理信息“产品存在”而不是实体?
$scope.addProduct = function (product) {
$http.post(serviceURI + "products", product).success(function (data) {
$scope.products.push(data);
$('.success-message').fadeIn(1000).delay(5000).fadeOut(1000);
$scope.message = "Product added";
}).error(function (error) {
$('.error-message').fadeIn(1000).delay(5000).fadeOut(1000);
$scope.message = "Error";
});
}
从JAX-RS返回数据和信息并在Angular控制器中获取它的最佳实践是什么?
答案 0 :(得分:3)
由于RESTFul webservices使用HTTP词汇表,我建议根据您的操作结果返回不同的HTTP状态代码。
在第一种情况下,您可以抛出状态代码为4xx系列的WebApplicationException。
在第二种情况下,您可以使用默认状态代码(在这种情况下我认为它将是200)或通过返回Response对象而不是a来提供更具体的状态代码,例如201(已创建)产品直接。 例如。 Response.created可能会对您有所帮助。
答案 1 :(得分:1)
在我的情况下,当响应正常时,我使用JAX-RS作为输入,使用Gson作为输出,因为我需要操作日期(长/日历),并且使用Gson很容易添加适配器。当响应不正常时,我返回状态错误代码。
@POST
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public Product createProduct(Product product) {
try {
Gson gson = new GsonBuilder()
//.registerTypeAdapter(Calendar.class, new CalendarSerializer())
// .registerTypeAdapter(Calendar.class, new CalendarDeserializer())
// .registerTypeAdapter(GregorianCalendar.class,
// new CalendarSerializer())
.create();
String json = null;
//do something
json = gson.toJson(product);
return Response.ok(json, MediaType.APPLICATION_JSON).build();
}catch (IllegalArgumentException ex){
return Response.serverError().status(Status.BAD_REQUEST).build();
}catch (Exception ex) {
return Response.serverError().status(Status.INTERNAL_SERVER_ERROR).build();
}
finally{
}
}
使用AngularJs的客户:
.success (function(data) {
//ok -> get data
})
.error (function(resp) {
if (resp.errorCode == 400){
...
}
...
...
}