是否有可能使用Spring MVC的与新泽西注解?(Is it possible to use Sp

2019-09-25 15:43发布

我想知道,如果有可能使用Spring Web MVC框架与新泽西州的注解,因为我有同春不能够解析部分变量的方法可以新泽西州一个巨大的问题,我需要一些泽西代码迁移到Spring MVC的。

我在新泽西州下面的代码:

@PUT
@Path("{storageId}/{repositoryId}/{path:.*}")
@PreAuthorize("hasAuthority('ARTIFACTS_DEPLOY')")
public Response upload(@PathParam("storageId") String storageId,
                       @PathParam("repositoryId") String repositoryId,
                       @PathParam("path") String path,
                       InputStream is)
{
    ...
}

我想将其转换到Spring MVC的,但是,就像我在这已经解释SO后,我遇到了解析路径变量的问题。

因此,我想知道(和一个单独的问题):是否有可能使用相同的球衣注解与Spring MVC?

Answer 1:

it's possible to use Spring Web MVC with Jersey annotations, try make a little sample in Spring Initializer there you can check the option jersey, see how spring build this project and try in yours



文章来源: Is it possible to use Spring MVC with Jersey annotations?