spring boot 添加jersey框架

spring boot 添加jersey框架

 

         Jersey是一个非常好的JavaREST API库。关于jersey在ssh框架的web项目中的使用,可以参考《jersey简单使用》 、《jersey实战--嵌入ssh框架的web项目》 、《jersey实战--传递对象参数》 。同时springBoot是Java世界中另一个很好的工具,它减少了程序的应用配置。这篇博客就介绍下如何将Jersey和Spring Boot结合起来使用。

 

         需要注意的是Jersey本身自带了hk2这样一个DI库,所以,在结合SpringBoot使用的时候,是比较容易搞混淆的。简单的讲,你应该分清楚,哪一部分是由Spring来管理,哪一部分是由Jersey的hk2来管理。

 

1.创建一个maven工程

2.编辑pom.xml文件,添加springboot和jersey的依赖jar,如下:


  4.0.0

  com.supre
  serial
  0.0.1-SNAPSHOT
  jar

  serial
  http://maven.apache.org

  
    UTF-8
  
  


    org.springframework.boot
    spring-boot-starter-parent
    1.2.5.RELEASE
    
 


	
      junit
      junit
      test 
    
    
   	
      org.springframework.boot
      spring-boot-starter-web
    
    
 
	
		org.glassfish.jersey.ext
		jersey-spring3	
	
	
		org.glassfish.jersey.media
		jersey-media-json-jackson
	 
    
  

  
    
      
        org.springframework.boot
        spring-boot-maven-plugin
      
    
  

3.编写webservice接口类,如下:

package com.supre.serial.webservice;

import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;

import com.supre.serial.bean.User;

@Path("/test")
public class ProductsResource {
	@GET
    @Path("/{id}")
    @Produces(MediaType.APPLICATION_JSON)
    public String test(@PathParam("id") int id) {
		
		return "HolleWord"+id;
    }
	
	@POST
    @Path("/getUser")
    @Produces(MediaType.APPLICATION_JSON)
	public User getUser(User user){
		user.setUserName(user.getUserNo()+"123123");
		return user;
	}
}

4.创建jersey注册类,注册webservice接口类,如下:

package com.supre.serial.config;

import org.glassfish.jersey.jackson.JacksonFeature;
import org.glassfish.jersey.server.ResourceConfig;

import com.supre.serial.webservice.ProductsResource;

public class JerseyConfig extends ResourceConfig{
	
	public JerseyConfig() {
		register(JacksonFeature.class);
		
		register(ProductsResource.class);
    }
	
}

5.spring boot启动类中配置jersey,如下:

package com.supre.serial.main;

import org.glassfish.jersey.servlet.ServletContainer;
import org.glassfish.jersey.servlet.ServletProperties;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.embedded.ServletRegistrationBean;
import org.springframework.context.annotation.Bean;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import com.supre.serial.config.JerseyConfig;

@SpringBootApplication
@RestController  
public class RootApplication {
	
	@RequestMapping("/")
	public String getHolle(){
		System.out.println("-----");
		return "HolleWord";
	}
	
	@Bean
	public ServletRegistrationBean jerseyServlet() {
		ServletRegistrationBean registration = new ServletRegistrationBean(new ServletContainer(), "/rest/*");
		registration.addInitParameter(ServletProperties.JAXRS_APPLICATION_CLASS, JerseyConfig.class.getName());
		return registration;
	}
	
	 public static void main( String[] args ){
	        System.out.println( "Hello World!" );
	        SpringApplication.run(RootApplication.class, args);
	 }
}

6.右键run as 启动类RootApplication.java,访问http://localhost:8080/rest/test/2,如下:

spring boot 添加jersey框架_第1张图片


参考博文:http://blog.csdn.net/kiwi_coder/article/details/32940025



你可能感兴趣的:(web,service接口,java,SpringBoot)