本文整理汇总了Java中org.mortbay.resource.Resource.newResource方法的典型用法代码示例。如果您正苦于以下问题:Java Resource.newResource方法的具体用法?Java Resource.newResource怎么用?Java Resource.newResource使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.mortbay.resource.Resource
的用法示例。
在下文中一共展示了Resource.newResource方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createWebAppContext
import org.mortbay.resource.Resource; //导入方法依赖的package包/类
protected WebAppContext createWebAppContext() {
try {
Resource jettyEnv = Resource.newResource(String.format("%s/WEB-INF/jetty-env.xml", mojo.getAppDir()));
XmlConfiguration conf = new XmlConfiguration(jettyEnv.getInputStream());
WebAppContext webapp = (WebAppContext) conf.configure();
webapp.setWar(mojo.getAppDir());
System.setProperty("java.naming.factory.url.pkgs", "org.mortbay.naming");
System.setProperty("java.naming.factory.initial", "org.mortbay.naming.InitialContextFactory");
return webapp;
} catch (Exception e) {
throw new RuntimeException(e);
}
}
示例2: getRootResource
import org.mortbay.resource.Resource; //导入方法依赖的package包/类
private Resource getRootResource(Bundle bundle, WebAppContext wac) throws Exception {
// decide whether we unpack or not
// unpack the war somewhere
File unpackFolder = unpackBundle(bundle, wac);
return Resource.newResource(unpackFolder.getCanonicalPath());
// else {
// ((OsgiWebAppContext) wac).setBundle(bundle);
// // if it's unpacked, use the bundle API directly
// return new BundleSpaceJettyResource(bundle, "/");
// }
}