相关疑难解决方法(0)

在Jersey2中使用@Immediate注释

我有一个与此处提出的类似的问题:如何让我的Jersey 2端点在启动时急切地初始化?

但稍微下线了.我可以立即加载我的资源,但是当我尝试通过调用REST URL来使用它时,我得到以下堆栈跟踪.

java.lang.IllegalStateException: Could not find an active context for org.glassfish.hk2.api.Immediate
2. java.lang.IllegalStateException: While attempting to create a service for      
SystemDescriptor(
implementation=com.service.MyResource
contracts={com.service.MyResource}
scope=org.glassfish.hk2.api.Immediate
qualifiers={}
descriptorType=CLASS
descriptorVisibility=NORMAL
metadata=
rank=0
loader=null
proxiable=null
proxyForSameScope=null
analysisName=null
id=150
locatorId=0
identityHashCode=1249600275
reified=true) in scope org.glassfish.hk2.api.Immediate an error occured while   locating the context
Run Code Online (Sandbox Code Playgroud)

我的TResource类因此被注释:

@Immediate
@Path("/test/v1")
public class TResource {
Run Code Online (Sandbox Code Playgroud)

我的基于Grizzly的服务器设置如下:

ResourceConfig rc = new ResourceConfig()
            .packages(true,
                    "com.mystuff"
              )        
            .property(ServerProperties.RESPONSE_SET_STATUS_OVER_SEND_ERROR, "true");

    HttpServer httpServer = GrizzlyHttpServerFactory.createHttpServer(URI.create(base_uri), rc);

    ApplicationHandler handler = new ApplicationHandler(rc);
    ServiceLocatorUtilities.enableImmediateScope(handler.getServiceLocator());
Run Code Online (Sandbox Code Playgroud)

任何指导将非常感谢!欢呼,菲尔

java jersey-2.0 hk2

5
推荐指数
1
解决办法
2103
查看次数

JAX-RS 依赖注入

我已经使用 Spring Rest 完成了项目。现在我们有一个小的休息项目,并计划使用 Jersey JAX-RS。我是新手,并参考了 SO 和其他博客以成功实现具有依赖项注入的 Rest api。

有以下代码。

应用程序配置文件

import javax.ws.rs.ApplicationPath;
import javax.ws.rs.core.Application;

@ApplicationPath("/")
public class AppConfig extends Application {    
    @Override
    public Set<Class<?>> getClasses() {
        System.out.println("AppConfig");
        final Set<Class<?>> s = new HashSet<Class<?>>();
        s.add(Controller.class);
        s.add(AppFeature.class);
        return s;
    }
}
Run Code Online (Sandbox Code Playgroud)

应用程序绑定器

import org.glassfish.hk2.utilities.binding.AbstractBinder;

public class AppBinder extends AbstractBinder {
    @Override
    protected void configure() {
        System.out.println("AppBinder");
        bind(ReflectionService.class).to(ReflectionService.class);
    }
}
Run Code Online (Sandbox Code Playgroud)

应用功能.java

import javax.ws.rs.core.Feature;
import javax.ws.rs.core.FeatureContext;

public class AppFeature implements Feature {
    @Override
    public boolean configure(FeatureContext context) {
        System.out.println("AppFeature");
        context.register(new AppBinder());
        return …
Run Code Online (Sandbox Code Playgroud)

java dependency-injection jax-rs jersey jakarta-ee

4
推荐指数
1
解决办法
8582
查看次数