将web容器置于OSGi框架下进行web应用的开发
将web容器置于OSGi框架下,其实就是将web容器做成OSGi支持的Bundle,再安装到OSGi框架中,这里使用的是Jetty容器。下面作详细的介绍。
1、创建一个Eclipse插件项目,在此插件下创建一个WebRoot文件夹,里面创建两个文件夹一个是images,一个是pages,里面分别放置一个图片文件,一个简单的html页面和一个简单的jsp文件。大致目录结构如下图所示:
2、jsp文件的内容如下:
- < %@ page language = "java" contentType = "text/html; charset=UTF-8" pageEncoding = "UTF-8" % >
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- < html >
- < head >
- < meta http-equiv = "Content-Type" content = "text/html; charset=UTF-8" >
- < title > Insert title here </ title >
- </ head >
- < body >
- < img src = "images/08.jpg" width = "200" height = "150" >
- </ body >
- </ html >
3、编辑MANIFEST.MF文件,将插件使用到的组件和包引入,最终MANIFEST.MF文件的内容如下:
- Manifest-Version: 1.0
- Bundle-ManifestVersion: 2
- Bundle-Name: Osgi_jetty Plug-in
- Bundle-SymbolicName: com.cjm.osgi.jetty;singleton: = true
- Bundle-Version: 1.0.0
- Import-Package: javax.servlet,
- javax.servlet.http,
- org.osgi.framework;version = "1.3.0"
- Require-Bundle: org.eclipse.equinox.http.registry,
- org.eclipse.equinox.jsp.jasper.registry
当插件使用到Eclipse的扩展点机制时,必须在Bundle-SymbolicName属性值最后设置singleton的值为true。
对于Servlet需要导入以下包:
javax.servlet
javax.servlet.http
对于jsp等web资源需要引入以下插件:
org.eclipse.equinox.http.registry
org.eclipse.equinox.jsp.jasper.registry
4、servlet的源码如下:
- public class HelloWorldServlet extends HttpServlet {
- private static final long serialVersionUID = -5560032300646459304L;
- protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
- response.setContentType("text/html;charset=GBK" );
- SimpleDateFormat sdf = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss" );
- String date = sdf.format(new Date());
- response.getWriter().println("现在的时间是:" + date);
- }
- }
5、资源映射的配置
如果要通过web容器访问bundle中的web资源,必须要通过某种方式来告诉OSGi框架,哪些资源可以访问,访问的规则是什么。新增一个名为“plugin.xml”的配置文件,增加以下内容:
- <? xml version = "1.0" encoding = "UTF-8" ?>
- <? eclipse version = "3.0" ?>
- < plugin >
- <!-- 配置扩展点 -->
- < extension point = "org.eclipse.equinox.http.registry.resources" >
- <!-- 映射目录资源。alias必须以/开头,不能以/结尾 -->
- < resource alias = "/images" base-name = "WebRoot/images" />
- < resource alias = "/pages" base-name = "WebRoot/pages" />
- </ extension >
- < extension point = "org.eclipse.equinox.http.registry.servlets" >
- <!-- 映射Servlet资源 -->
- < servlet alias = "/hello" class = "com.cjm.web.servlet.HelloWorldServlet" load-on-startup = "true" />
- <!-- 映射jsp资源 -->
- < servlet alias = "/*.jsp" class = "org.eclipse.equinox.jsp.jasper.registry.JSPFactory:/WebRoot/Pages/" />
- </ extension >
- </ plugin >
通过扩展点向web服务器中注册静态资源和Servlet。
alias:在URL中访问的路径。
basse-name:真正的文件路径。
6、启动项目
jetty默认的端口是80,如果需要修改该端口,可以在Arguments栏的VM arguments中配置启动参数:
-Dorg.osgi.service.http.port=8081,如下图:
启动项目后,可以通过类似以下的路径来访问:
http://localhost:8081/pages/hello.html
http://localhost:8081/hello
http://localhost:8081/index.jsp
上一篇: 深入理解Spring MVC 3(二)
下一篇: 在她面前,其他的雕像都弱爆了!