示例#1
0
 @DELETE
 @Path("{id}")
 @UnitOfWork
 public void delete(@Context User user, @PathParam("id") Long id) {
   projectDao.delete(id);
 }