Spring Boot上的JAX

Spring Boot上的JAX,第1张

Spring Boot上的JAX

1)确保您应用的Spring Boot配置文件对Spring MVC(例如执行器端点)和Jersey的资源端点进行了区分:

application.yml

...# Spring MVC dispatcher servlet path. Needs to be different than Jersey's to enable/disable Actuator endpoints access (/info, /health, ...)server.servlet-path: /# Jersey dispatcher servletspring.jersey.application-path: /api...

2)确保您的Spring Boot应用程序通过以下方式扫描位于特定程序包(即com.asimio.jerseyexample.config)中的组件:

@SpringBootApplication(    scanbasePackages = {        "com.asimio.jerseyexample.config", "com.asimio.jerseyexample.rest"    })

3)Jersey配置类的实现:

package com.asimio.jerseyexample.config;...@Componentpublic class JerseyConfig extends ResourceConfig {    ... public JerseyConfig() {        // Register endpoints, providers, ...        this.registerEndpoints();    }    private void registerEndpoints() {        this.register(HelloResource.class);        // Access through /<Jersey's servlet path>/application.wadl        this.register(WadlResource.class);    }}

4)使用JAX-RS(Jersey)实现资源:

package com.asimio.jerseyexample.rest.v1;...@Component@Path("/")@Consumes(MediaType.APPLICATION_JSON)@Produces(MediaType.APPLICATION_JSON)public class HelloResource {    private static final Logger LOGGER = LoggerFactory.getLogger(HelloResource.class);    @GET    @Path("v1/hello/{name}")    public Response getHelloVersionInUrl(@ApiParam @PathParam("name") String name) {        LOGGER.info("getHelloVersionInUrl() v1");        return this.getHello(name, "Version 1 - passed in URL");    }...}

可以在我几个月前创建的博客中找到更详细的 *** 作方法,该博客使用Spring Boot,Jersey
Swagger和Docker进行微服务。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4914977.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存