SpringBoot集成Jersey

Posted 李帆1998

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot集成Jersey相关的知识,希望对你有一定的参考价值。

SpringBoot集成Jersey

添加依赖

<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-jersey</artifactId>
</dependency>

添加配置

①新建JerseyConfig.java

@Component
@ApplicationPath("/jersey")
public class JerseyConfig extends ResourceConfig{

    public JerseyConfig(){
        //packages("com.example.study");
        register(UserResource.class);
    }
}

建议用register添加资源

注意ApplicationPath,如果不添加无法访问,因为默认为/*,由于本项目无web.xml,所以在这里配置(配置文件里也可以)

②输出的json数据格式化(方便使用,不添加也可访问)

在application.yml中Spring块下添加

jackson:

    default-property-inclusion: non_null
    serialization:
        indent-output: true
    date-format: yyyy-MM-dd HH:mm:ss
    parser:
        allow-missing-values: true

测试使用

新建UserResource.java

@Component
@Path("/users")
public class UserResource {

    @Autowired
    private UserMappers userMapper;


    @GET
    @Produces(MediaType.APPLICATION_JSON)
    public User get(){
        List<User> users = userMapper.selectAll();
        return users.get(0);
    }

}

记得在JerseyConfig中注册

访问

http://localhost:8088/jersey/users

其它

注意:此时原来搭建的SpringMVC也可以访问

SpringMVC 与jersey就一起工作了,附上项目目录供大家参考项目异同。

这是我使用了jersey的项目,其余配置还有:

mybatis,mybatis generator
slf4+logback
thymeleaf模板引擎
alibaba的druid数据库连接池

https://github.com/Lifan1998/study

供初学者参考。

以上是关于SpringBoot集成Jersey的主要内容,如果未能解决你的问题,请参考以下文章

如何将Swagger no config设置与Jersey 2集成

如何将 Swagger 与 Maven + Java + Jersey +Tomcat 集成

jersey在 spring boot 添加 packages 扫描路径支持

Jersey和Springboot应用程序抛出java.lang.StackOverflowError

springboot 之 JAX-RS 和 Jersey

Spring Boot + Jersey