快速业务通道

基于Spring DM的WEB应用开发 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-16
ts=2    47      ACTIVE   org.springframework.bundle.osgi.core_1.1.2

以上这些Bundles可以在spring dm 1.1.2的发布包中找到,以上Bundles的start level设置为2.

2 加入Log4j日志配置Bundles

这个Bundles的目的在于提供log4j.properties,详细做法可以参考本人的“spring osgi快速入门”

3 开发WEB应用

WEB应用的开发方式和普通的WEB基本上一样,只是加入一些OSGi的配置。

大致结构如下:

META-INF    MANIFEST.MF    WEB-INF    Classes    Lib    Web.xml    applicationContext.xml

基于Spring DM的WEB应用开发(2)

时间:2011-07-20

1 MANIFEST.MF配置参考:

Manifest-Version: 1.0    Bundle-ManifestVersion: 2    Bundle-Name: Osgi_web_app Plug-in    Bundle-SymbolicName: osgi_web_app    Bundle-Version: 1.0.0    Bundle-Vendor: ccsoft    Import-Package: javax.servlet,    javax.servlet.http,    javax.servlet.resources;version="2.4.0",    org.ccsoft.service,    org.springframework.osgi.web.context.support;version="1.1.2",    org.springframework.web.context,    org.springframework.web.context.support    Bundle-ClassPath: WEB-INF/classes/,    .    Require-Bundle: org.springframework.bundle.osgi.core,    org.springframework.bundle.osgi.io,    org.springframework.bundle.spring.beans,    org.springframework.bundle.spring.context,    org.springframework.bundle.spring.core

2 为了在web应用中使用spring dm的IoC功能,web.xml中需要加入一些特定配置,类似于使用Spring时的配置,web.xml配置参考如下:

<?xml version="1.0" encoding="ISO-8859-1"?>    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"    version="2.4">    <display-name>Simple Osgi WebApp Bundle</display-name>    <description>Simple OSGi War</description>    <context-param>    <param-name>contextClass</param-name>    <param-value>org.springframework.osgi.web.context.support.OsgiBundleXmlWebApplicationContext</param-value>    </context-param>    <listener>    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>    </listener>    <servlet>    <servlet-name>MyServlet</servlet-name>    <servlet-class>org.ccsoft.web.MyServlet</servlet-class>    </servlet>    <servlet-mapping>    <servlet-name>MyServlet</servlet-name>    <url-pattern>/servlet</url-pattern>    </servlet-mapping>    </web-app>

至于applicationContext.xml则是标准的spring dm配置文件形式,只是没有放在我们所熟悉的位置(META-INF/spring)

配置示例:

<?xml version="1.0" encoding="UTF-8"?>    <beans xmlns="http://www.springframework.org/schema/beans"    xmlns:xsi="http://www.w3.org/2001

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号