|
||||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object gboat2.base.bridge.util.BundleUtil
public class BundleUtil
对 Bundle 进行常规操作的工具类
构造方法摘要 | |
---|---|
BundleUtil()
|
方法摘要 | ||
---|---|---|
static ClassLoader |
getBundleClassLoader(org.osgi.framework.Bundle bundle)
得到 Bundle 的类加载器。 |
|
static org.osgi.framework.Bundle |
getBundleForRequestJsp(String path,
com.opensymphony.xwork2.ActionInvocation invocation)
根据调用的 Action 和需要返回的 JSP 路径,获取 JSP 页面所在的 Bundle |
|
static org.osgi.framework.Bundle |
getBundleForRequestJsp(String path,
com.opensymphony.xwork2.ActionInvocation invocation,
javax.servlet.ServletContext servletContext)
根据调用的 Action 和需要返回的 JSP 路径,获取 JSP 页面所在的 Bundle |
|
static List<String> |
getClasses(String pkg,
org.osgi.framework.Bundle bundle)
获取指定Bundle中某个包下的所有类的类名 |
|
static
|
getService(org.osgi.framework.BundleContext context,
Class<S> clazz)
取得指定类型接口的实现 |
|
static
|
getServices(org.osgi.framework.BundleContext context,
Class<?> clazz)
取得指定类型接口的所有实现 |
|
static Properties |
loadProperties(org.osgi.framework.Bundle bundle,
String resource)
加载指定Bundle中的属性文件 |
|
static org.apache.commons.configuration.PropertiesConfiguration |
loadPropertiesConfiguration(org.osgi.framework.Bundle bundle,
String resource)
加载指定Bundle中的属性文件 |
|
static InputStream |
loadResource(org.osgi.framework.Bundle bundle,
String resource)
加载指定Bundle中的属性文件 |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
构造方法详细信息 |
---|
public BundleUtil()
方法详细信息 |
---|
public static InputStream loadResource(org.osgi.framework.Bundle bundle, String resource)
bundle
- 指定的 bundleresource
- 需要加载的资源文件的路径,如:/test/1.txtpublic static Properties loadProperties(org.osgi.framework.Bundle bundle, String resource)
bundle
- 指定的 bundleresource
- 需要加载的属性文件的路径,如:/test/1.properties
public static org.apache.commons.configuration.PropertiesConfiguration loadPropertiesConfiguration(org.osgi.framework.Bundle bundle, String resource)
bundle
- 指定的 bundleresource
- 需要加载的属性文件的路径,如:/test/1.properties
public static List<String> getClasses(String pkg, org.osgi.framework.Bundle bundle)
pkg
- 包名bundle
- 该包所在的Bundle对象
public static ClassLoader getBundleClassLoader(org.osgi.framework.Bundle bundle)
在 Bundle 内部代码中要得到自己 Bundle 的 ClassLoader 很简单,在自己 Bundle 的代码中,直接写 this.getClass().getClassLoader() 就得到了自己 Bundle 的 ClassLoader 了。
本方法主要是用于获取外部 Bundle 的类加载器,实现思路:
注意:该方法不能用于获取下列 Bundle 的 ClassLoader
bundle
- Bundle 实例
public static <S> S getService(org.osgi.framework.BundleContext context, Class<S> clazz)
S
- 接口的类型context
- bundleContextclazz
- 接口的class
public static <S> List<S> getServices(org.osgi.framework.BundleContext context, Class<?> clazz)
S
- 接口的类型context
- bundlecontextclazz
- 接口的class
public static org.osgi.framework.Bundle getBundleForRequestJsp(String path, com.opensymphony.xwork2.ActionInvocation invocation)
path
- JSP 路径invocation
- 当前调用的 Action
public static org.osgi.framework.Bundle getBundleForRequestJsp(String path, com.opensymphony.xwork2.ActionInvocation invocation, javax.servlet.ServletContext servletContext)
path
- JSP 路径invocation
- 当前调用的 ActionservletContext
- Servlet 上下文实例,可以为 null
|
||||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |