我想知道,如果有可能使用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?