`
yianpuodiaotu
  • 浏览: 241643 次
  • 性别: Icon_minigender_1
  • 来自: 济南
社区版块
存档分类
最新评论

OSGI bundle control tomcat start&stop

    博客分类:
  • OSGI
阅读更多
需求:
在OSGI应用中,启停Tomcat Server。
比较奇怪哦,我也觉得。这个需求的目的,是为了部署某个特定的应用。本来使用Spring DM、Apache flex or其他支持OSGI的App server(如jboss)就很容易将web应用移植到osgi容器中。但人家强调web应用已经在tomcat中成功部署,为了省事和产品的统一性,我就使用java执行bat,权当稳住局面,后续集中开发。、呵呵
设计:
启动Tomcat 代码片段:

Runtime rt = Runtime.getRuntime();
rt.exec( "cmd /c start /b catalina.bat run", null, new File( "D:/tomcat/bin/ "));
Thread.sleep(1000);// must be exist, this is to wait cmd excute.

注意我没使用startup.bat,而是使用了catalina.bat run,而且使用start /b,这样就会仅仅在后台启动,没有黑窗口了。
停止Tomcat 代码片段
Runtime rt = Runtime.getRuntime();
rt.exec( "cmd /c start /b catalina.bat stop ", null, new File( "D:/tomcat/bin/ "));
Thread.sleep(1000);// must be exist, this is to wait cmd excute.

似乎大功告成了,但在bundle中还是遇到了一些问题:Tomcat没启动??why and why?原来是用以启动Tomcat的线程必须“终止”后,Tomcat才能完整起来。那好办,价格线程就OK了。

最终代码如下:
public class Activator implements BundleActivator {

	private static BundleContext context;
	private String TOMCAT_BASE = null;
	static BundleContext getContext() {
		return context;
	}

	/*
	 * (non-Javadoc)
	 * @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)
	 */
	public void start(BundleContext bundleContext) throws Exception {
		Activator.context = bundleContext;
		String property = System.getProperty("user.dir");
		String createURI = createURI(property + "/config/appserver.properties");
		Properties properties = new Properties();
		properties.load(new FileInputStream(createURI));
		TOMCAT_BASE = (String) properties.get("app_path");
		if(!new File(TOMCAT_BASE).exists()){
			TOMCAT_BASE =  createURI(property +"/config/"+TOMCAT_BASE);
			if(!new File(TOMCAT_BASE).exists()){
				System.err.println("App Server is not exist!!!");
				return;
			}
			if(!TOMCAT_BASE.endsWith("/"))
				TOMCAT_BASE = TOMCAT_BASE + "/";
		}
		
		System.out.println("App Server path:" + TOMCAT_BASE);
		Thread startThread = new Thread(new StartRunnable());
		startThread.start();
	}
	
	/*
	 * @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext)
	 */
	public void stop(BundleContext bundleContext) throws Exception {
		Activator.context = null;
		
		Thread startThread = new Thread(new StopRunnable());
		startThread.start();
	}
	
	public static String createURI(String s) {
		String retVal = new String(s);
		retVal = retVal.replace("\\", "/");
		retVal = retVal.replace(" ", "%20");
		return retVal;
	}
	/**
	 * start tomcat server
	 * @author qinghua
	 *
	 */
    class StartRunnable implements Runnable {
        public void run(){
    		System.out.println("Server Starting ...");
    		try {
    			Runtime rt = Runtime.getRuntime();
				rt.exec("cmd /c start /b catalina.bat run", null, new File(TOMCAT_BASE+ "bin/"));
				Thread.sleep(1000);// must be exist, this is to wait cmd excute.
			} catch (IOException e) {
				e.printStackTrace();
			} catch (InterruptedException e) {
				e.printStackTrace();
			}   
            System.out.println("Server Started!");
        }
    }
    /**
     * stop tomcat server
     * @author qinghua
     *
     */
    class StopRunnable implements Runnable {
        public void run(){
        	System.out.println("Server Stopping...");
    		try {
    			Runtime rt = Runtime.getRuntime();
				rt.exec("cmd /c start /b catalina.bat stop", null, new File(TOMCAT_BASE+ "bin/"));
				Thread.sleep(1000);// must be exist, this is to wait cmd excute.
			} catch (IOException e) {
				e.printStackTrace();
			} catch (InterruptedException e) {
				e.printStackTrace();
			}   
    		System.out.println("Server Stopped!!");
        }
    }

}

分享到:
评论

相关推荐

    tomcat嵌入OSGI容器

    3. **配置管理**:OSGI的配置管理允许动态配置Bundle,这需要在Tomcat的配置文件中进行相应的设置,以便在启动或运行时更新Bundle的配置。 4. **Web应用部署**:传统的WAR文件可以在OSGI环境中部署为Bundle。这通常...

    tomcat-osgi.rar_OsgiContentFactory_osgi_osgi tomcat 集成_osgi tom

    文件“tomcat_osgi.doc”可能包含详细的步骤指南,涵盖了配置Tomcat以支持OSGi、安装必要的库、配置OSGi框架(如Equinox或Felix)、以及如何打包和部署OSGi bundle到Tomcat等内容。文档可能还会讲解如何解决常见的...

    OSGI bundle

    **OSGI Bundle详解** OSGI(Open Service Gateway Initiative)是一种Java模块化系统,它定义了一种标准的方式来组织和管理Java应用程序的组件。OSGI的核心概念是bundle,它类似于Java的jar文件,但具有更强大的...

    基于EQUINOX的 OSGI BUNDLE 运行例子

    标题"基于EQUINOX的OSGI BUNDLE运行例子"指的是一个实际操作示例,展示了如何在EQUINOX OSGi环境中运行OSGi Bundle。EQUINOX提供了一个完整的运行时环境,使得开发者可以方便地管理和执行这些模块化的Bundle。 描述...

    基于Eclipse的Equinox框架开发OSGi Bundle应用

    【标题】基于Eclipse的Equinox框架开发OSGi Bundle应用 在Java世界中,OSGi(Open Services Gateway Initiative)是一种模块化系统,它允许开发者创建可独立更新和依赖管理的模块,即Bundle。Eclipse的Equinox是...

    OSGI bundle change listener

    在bundle的`start()`方法中添加监听器,然后在`stop()`方法中移除,确保监听器只在bundle活动期间有效。 **VisualVM工具** VisualVM是一个强大的Java性能分析工具,它可以用来监控和诊断JVM上的应用程序,包括内存...

    tomcat-osgi压缩包

    这里的"前台页面自动start stop"意味着提供了用户界面,用户可以通过这个界面直观地启动和停止部署的OSGi服务或bundle。这对于开发和测试环境来说非常方便,可以快速调整服务状态而无需重启整个服务器。 “相应的...

    Tomcat-Osgi

    【标题】"Tomcat-Osgi" 是一个专为Apache Tomcat服务器设计的模块化扩展,它使得Tomcat能够与Open Service Gateway Initiative (OSGi)框架集成。OSGi是一种Java服务框架,它允许开发者以模块化的方式(称为"bundles...

    tomcat 集成 osgi服务,示例源码

    常见的集成框架有Apache Felix、Equinox等,它们为Tomcat提供了一个可以加载和管理OSGi bundle的环境。 4. **配置文件**: - `catalina.properties`:Tomcat的主要配置文件,包含了全局的服务器属性。 - `server....

    OSGI应用中整合Spring、Mybatis、Spring MVC案例

    Mybatis的配置文件可以放在OSGI的bundle中,通过OSGI服务注册Mybatis的SqlSessionFactory,然后在其他bundle中通过服务查找来使用。 Spring MVC是Spring框架的一部分,用于构建Web应用程序。在OSGI环境中集成Spring...

    浅析OSGI的bundle依赖

    OSGI(Open Services Gateway Initiative)是一种模块化系统和Java服务框架,它允许在单个JVM上动态地发现、加载、卸载和管理软件模块,称为bundle。在OSGI环境中,每个bundle都是一个独立的代码单元,具有自己的类...

    OSGi with CAR-Bundle

    3. **Bundle作为组件**:每个Bundle可以被视为独立的组件,它们之间通过OSGi服务注册表进行交互,实现动态的依赖管理和服务发现。 4. **使用脚本管理组件**:引入脚本语言,如JavaScript或Groovy,可以更灵活地管理...

    osgi发布http服务的各种bundle,各种jar包,全全全~

    osgi发布http服务的各种bundle,各种jar包,全全全~非常好用的技术包 包括:org.eclipse.equinox.http_1.0.0.v20060601a.jar org.eclipse.equinox.ds_1.0.0.v20060601a.jar org.eclipse.equinox.servlet.api_1.0.0...

    OSGi与Web容器的整合

    Web Application Bundle (WAB) 是一种特殊的OSGi Bundle,它可以作为一个Web应用运行。WAB包含传统的Web项目元素,如Web-INF目录和web.xml,同时还包含OSGi元数据,如MANIFEST.MF文件,使得它们能够作为OSGi模块运行...

    Jar转换为Bundle工具

    标题中的“Jar转换为Bundle工具”指的是将传统的Java Archive (JAR) 文件转换为OSGI Bundle的过程。OSGI(Open Service Gateway Initiative)是一种模块化系统和Java服务框架,它允许在单个Java虚拟机(JVM)上运行...

    osgi helloworld

    在OSGi环境中,每个bundle都有自己的类加载器,这使得bundle可以加载自己特有的类库,而不会与系统中的其他bundle冲突。同时,OSGi提供了动态性,允许bundle在运行时安装、启动、更新或停止,这对于软件的维护和升级...

    OSGI&spring;&hibernate;

    标题中的"OSGI&spring;&hibernate;"表明我们将探讨三个关键的Java技术:OSGI(Open Services Gateway Initiative)、Spring框架以及Hibernate ORM(Object-Relational Mapping)工具。这三个技术在现代Java应用开发...

    osgi在web容器中部署的例子

    2. `readme.txt`:通常包含关于部署的说明或指南,可能包括如何配置Tomcat以支持OSGi,以及如何将bundle添加到OSGi容器的步骤。 3. `bridge.war`:这可能是一个Web应用,用于作为OSGi和传统Web应用之间的桥梁。例如...

    osgi 在web容器中部署

    你可以将其作为一个OSGi bundle部署到Tomcat中,然后通过Web接口来管理其他OSGi bundles的生命周期。WebConsole提供了上传、安装、启动和停止bundle的功能,对于开发者来说非常方便。 Pax Web则是一个更专注于将...

    blueprint-osgi-bundle:OSGi 示例

    **标题解析:** "blueprint-osgi-bundle:OSGi 示例" 指的是一个基于OSGi(Open Service Gateway Initiative)框架的示例项目,它使用了Blueprint服务容器来管理服务组件。Blueprint是Apache Felix项目中的一个子项目...

Global site tag (gtag.js) - Google Analytics