当Impl远程时,如何注释Jersey POJO?

时间:2015-03-02 06:49:11

标签: spring rest jersey jax-rs rmi

我有2个JVM。

JettyJVM 运行http请求并使用RmiProxyFactoryBean支持的接口CarFacade到CoreJVM中运行的CarFacadeImpl

<bean class="org.springframework.remoting.rmi.RmiProxyFactoryBeanFactory">
  <property name="serviceInterface" value="org.foo.CarFacade"/>
  <property name="serviceUrl" value="rmi://#{HOST}:1099/CarFacade"/>
</bean>

CoreJVM 在spring容器中运行核心业务逻辑并具有CarFacadeImpl

<bean id="carFacade" class="org.foo.impl.CarFacadeImpl"></bean>
<bean class="org.springframework.remoting.rmi.RmiServiceExporter">  
  <property name="service" ref="carFacade"></property>  
  <property name="serviceInterface" value="org.foo.CarFacade"></property>  
  <property name="serviceName" value="CarFacade"></property>  
  <property name="replaceExistingBinding" value="true"></property>  
  <property name="registryPort" value="1099"></property>  
</bean> 

此设置目前适用于flex / blazds,我的服务很好地曝光。

有什么方法可以通过泽西岛公开这个吗?

我尝试使用Impl上的注释(首选)但是组件扫描没有找到注释(显然因为接口没有注释) 所以我尝试了接口上的注释,但是球衣说它无法实例化接口。

// CarFacadeImpl.java - when I had the annotations on the class in the CoreJVM
@Path("car")
public class CarFacadeImpl implements CarFacade {
  @GET
  public String getName() {
    return "CarFacade";
  }
}

// CarFacade.java - When I had the annotations on the interface in JettyJVM
@Path("car")
public class CarFacade {
  @GET
  String getName();
}

我真的不想写一个额外的图层来暴露休息。

我已经尝试过这里的例子http://www.webappsolution.com/wordpress/2012/03/23/one-java-service-pojo-for-amfxmljson-with-spring-blazeds-jersey-jax-rs/,但它们之间没有RMI调用。

1 个答案:

答案 0 :(得分:0)

我找到了答案,至少对于泽西岛2.16。它确实需要注释在界面上,但这比创建一个全新的层

要好得多

覆盖默认路径扫描注册并使用类似的内容进行注册:

// Jersey ResourceConfig
final ResourceConfig rc = new ResourceConfig();

// Get my Spring context
final ApplicationContext context = new ClassPathXmlApplicationContext("clientContext.xml");
// Use Springs class path scanner to find @Path annotated classes
ClassPathScanningCandidateComponentProvider scanner = new ClassPathScanningCandidateComponentProvider(false) {
    @Override
    protected boolean isCandidateComponent(AnnotatedBeanDefinition beanDefinition) {
        return beanDefinition.getMetadata().isIndependent();
    }
};
scanner.addIncludeFilter(new AnnotationTypeFilter(Path.class));

// For each class found in package (and sub packages)
for (BeanDefinition bd : scanner.findCandidateComponents("example")) {
    try {
        // Get the class
        Class clazz = HttpServer.class.getClassLoader().loadClass(bd.getBeanClassName());
        // Get the proxy
        Object bean = context.getBean(clazz);
        if (bean != null) {
            // Register the proxy with the interface
            rc.register(bean, clazz);
        }
    } catch (ClassNotFoundException e) {
        e.printStackTrace();
    }
}