关于Jersey整合Spring注入出现NullPointException问题

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

解决方案如果:

一、web.xml


		Jersey Web Application
		org.glassfish.jersey.servlet.ServletContainer
		
		
			javax.ws.rs.Application
			com.example.MyApplication 
		
	
	
		Jersey Web Application
		/webapi/*
	
package com.example;

import org.glassfish.jersey.server.ResourceConfig;
import org.glassfish.jersey.server.spring.scope.RequestContextFilter;

/**
 * Spring HelloWorld Web Application configuration.
 *
 * @author Jakub Podlesak (jakub.podlesak at oracle.com)
 */
public class MyApplication extends ResourceConfig {

    /**
     * Register JAX-RS application components.
     * 如果要和spring要个jersey结合,必须得在jersey 中注册
     */
    public MyApplication() {
        register(RequestContextFilter.class);
        register(SpringRequestResource.class);
    }
import org.springframework.stereotype.Component;

import com.example.emp.EmpService;

@Path("spring-hello")
@Component
public class SpringRequestResource {
	@Resource
	private EmpService empService;
	@GET
    @Produces(MediaType.TEXT_PLAIN)
    public String getHello() {
        return empService.greet("world");
    }

关于Jersey整合Spring注入出现NullPointException问题_第1张图片

已经执行成功,具体为什么要注册,有时间看完源码给大家分享出来。

转载于:https://my.oschina.net/u/1455335/blog/519596

你可能感兴趣的:(关于Jersey整合Spring注入出现NullPointException问题)