在Felix OSGi容器中安装Spring Rest Json Service

时间:2014-01-28 19:24:16

标签: java json spring rest osgi

所以我试图在基于Felix和Maven的OSGi包中创建一个远程Rest(JSON)服务。

我的基本服务界面:

@Controller
@RequestMapping("/s/fileService")
public interface RestFileService {

   @RequestMapping(value = "/file", method = RequestMethod.POST)
   @ResponseBody
   public String getFile(Long id);
}

我的界面实现

public class RestFileServiceImpl implements RestFileService{

    public String getFile(Long id) {
        return "test service";
    }
}

通常我会将此添加到我的web.xml

<servlet>
      <servlet-name>spring-mvc-dispatcher</servlet-name>
      <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
      <init-param>
           <param-name>contextConfigLocation</param-name>
           <param-value>/WEB-INF/application-context.xml</param-value>
      </init-param>
      <load-on-startup>1</load-on-startup>
 </servlet>

 <servlet-mapping>
      <servlet-name>spring-mvc-dispatcher</servlet-name>
      <url-pattern>/rest/*</url-pattern>
 </servlet-mapping> 

这可以在正常的webapp中正常工作。 但现在我想把它放在一个OSGi包中。

Servlet 3.0允许您使用@WebServlet来声明没有web.xml的servlet 所以我创建了一个RestServlet

@WebServlet(value="/rest", name="rest-servlet")
public class RestServlet implements ServletContextListener {

private static Log sLog = LogFactory.getLog(RestServlet.class);

public void contextInitialized(ServletContextEvent arg0) {
    sLog.info("initializing the Rest Servlet");
}

public void contextDestroyed(ServletContextEvent arg0) {
    sLog.info("un-initializing the Rest Servlet");  
}
}

这是我的OSGi激活器:

public class Activator implements BundleActivator {

private static Log sLog = LogFactory.getLog(Activator.class);

public void start(BundleContext context) throws Exception {

    /*
     * Exposing the Servlet
     */

    Dictionary properties = new Hashtable();
    context.registerService(RestFileService.class.getName(), new  RestFileServiceImpl(), properties );

    sLog.info("Registered Remote Rest Service");
}

public void stop(BundleContext context) throws Exception {
    sLog.info("Unregistered Remote Rest Service");
}

}

我知道Felix在JAX中有自己的http实现,但我试图用spring注释和尽可能少的XML来做这件事。 我可以强制它注册注释驱动的3.0 servlet吗?

我做错了什么?这有可能吗?

1 个答案:

答案 0 :(得分:0)

如果您正在寻找一种在OSGi中进行REST的简单方法,请查看Amdatu项目提供的一些Web组件。此页面几乎解释了如何创建REST服务:https://amdatu.org/application/web/并且还有一个视频将引导您完成整个过程:https://amdatu.org/generaltop/videolessons/