是否可以定义一个与实现(使用eclipse和jersey分离)的jax-rs服务接口?
问题内容:
我不知道标题是否令人困惑,但可以说我有这个界面:
@Produces(MediaType.APPLICATION_JSON)
@Path("/user")
public interface UserService {
@GET
@Path("/{userId}")
public Response getUser(@PathParam("userId") Long userId);
}
为什么当我尝试实现版本时,Eclipse为重写的方法而不是为类重写注解?
class UserServiceImpl implements UserService {
@Override
@GET
@Path("/{userId}")
public Response getUser(@PathParam("userId") Long userId) {
// TODO Auto-generated method stub
return null;
}
}
我试图为静态Web服务创建一个标准定义,然后使用不同的实现。使用标准jax-rs可能会发生这种情况吗?我是否会使用错误的注释?
问题答案:
只有在实现类上不使用 任何 jax-rs
注释时,才可以使用注释继承:JSR-339的3.6节对此进行了说明。
您重新定义,@Path
并@Produces
为方法重新定义,但不为类重新定义 。
因此,Path
代码中的注释应该在具体的类上:
public interface UserService {
@GET
@Path("/{userId}")
@Produces(MediaType.APPLICATION_JSON)
public Response getUser(@PathParam("userId") Long userId);
}
@Path("/user")
class UserServiceImpl implements UserService {
@Override
@GET
@Path("/{userId}")
@Produces(MediaType.APPLICATION_JSON)
public Response getUser(@PathParam("userId") Long userId) {
// TODO Auto-generated method stub
return null;
}
}
顺便说一句,规范鼓励我们在具体的类上复制注释:
为了与其他Java EE规范保持一致,建议始终重复注释,而不要依赖注释继承。