org.apache.geronimo.j2ee.deployment.Module.isStandAlone()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(4.5k)|赞(0)|评价(0)|浏览(173)

本文整理了Java中org.apache.geronimo.j2ee.deployment.Module.isStandAlone()方法的一些代码示例,展示了Module.isStandAlone()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Module.isStandAlone()方法的具体详情如下:
包路径:org.apache.geronimo.j2ee.deployment.Module
类名称:Module
方法名:isStandAlone

Module.isStandAlone介绍

暂无

代码示例

代码示例来源:origin: org.apache.geronimo.modules/geronimo-myfaces-builder

  1. protected Set<ConfigurationResource> findMetaInfConfigurationResources(EARContext earContext, Module module, Bundle bundle) throws DeploymentException {
  2. final Set<ConfigurationResource> metaInfConfigurationResources = new HashSet<ConfigurationResource>();
  3. String moduleNamePrefix = module.isStandAlone() ? "" : module.getTargetPath() + "/";

代码示例来源:origin: org.apache.geronimo.modules/geronimo-myfaces-builder

  1. protected Set<ConfigurationResource> findFaceletConfigResources(EARContext earContext, Module module, Bundle bundle) throws DeploymentException {
  2. final Set<ConfigurationResource> metaInfConfigurationResources = new HashSet<ConfigurationResource>();
  3. String moduleNamePrefix = module.isStandAlone() ? "" : module.getTargetPath() + "/";

代码示例来源:origin: org.apache.geronimo.modules/geronimo-openejb-builder

  1. private void installModule(Module module, EARContext earContext) throws DeploymentException {
  2. registerModule(module, earContext);
  3. JarFile moduleFile = module.getModuleFile();
  4. try {
  5. if (module.isStandAlone()) {
  6. JarUtils.unzipToDirectory(new JarFile(moduleFile.getName()), earContext.getBaseDir());
  7. } else {
  8. // extract the ejbJar file into a standalone packed jar file and add the contents to the output
  9. earContext.addIncludeAsPackedJar(URI.create(module.getTargetPath()), moduleFile);
  10. // add manifest class path entries to the ejb module classpath
  11. Collection<String> EjbModuleClasspaths = module.getClassPath();
  12. EjbModuleClasspaths.add(module.getTargetPath());
  13. Collection<String> moduleLocations = module.isStandAlone() ? null : module.getParentModule()
  14. .getModuleLocations();
  15. URI baseUri = URI.create(module.getTargetPath());
  16. earContext.getCompleteManifestClassPath(module.getDeployable(), baseUri, URI.create("."), EjbModuleClasspaths, moduleLocations);
  17. for (String classpath:EjbModuleClasspaths){
  18. earContext.addToClassPath(classpath);
  19. }
  20. }
  21. //earContext.addInclude(".", moduleFile);
  22. } catch (IOException e) {
  23. throw new DeploymentException("Unable to copy ejb module jar into configuration: " + moduleFile.getName(), e);
  24. }
  25. }

代码示例来源:origin: org.apache.geronimo.modules/geronimo-web-2.5-builder

  1. EARContext moduleContext;
  2. if (module.isStandAlone()) {
  3. moduleContext = earContext;
  4. } else {
  5. throw new DeploymentException("Problem deploying war", e);
  6. } finally {
  7. if (!module.isStandAlone()) {
  8. try {
  9. moduleContext.flush();

代码示例来源:origin: org.apache.geronimo.modules/geronimo-persistence-jpa20-builder

  1. if (!module.isStandAlone() && module.getType() == ConfigurationModuleType.WAR) {
  2. resolveWARcp = true;
  3. if (module.isStandAlone() && module.getType() == ConfigurationModuleType.EJB) {
  4. manifestcpCopy.add("");

代码示例来源:origin: org.apache.geronimo.modules/geronimo-openejb-builder

  1. standAlone = parentModule.isStandAlone();

代码示例来源:origin: org.apache.geronimo.modules/geronimo-web-2.5-builder

  1. public static void processWebFragmentsAndAnnotations(EARContext earContext, Module module, Bundle bundle, WebApp webApp) throws DeploymentException {
  2. final Map<String, WebFragment> jarUrlWebFragmentDocumentMap = new LinkedHashMap<String, WebFragment>();
  3. final String validJarNamePrefix = module.isStandAlone() ? "WEB-INF/lib" : module.getTargetPath() + "/WEB-INF/lib";
  4. WebFragmentEntry[] webFragmentEntries = null;
  5. Enumeration<String> enumeration = bundle.getEntryPaths(validJarNamePrefix);

代码示例来源:origin: org.apache.geronimo.modules/geronimo-openejb-builder

  1. installModule(module, earContext);
  2. EARContext moduleContext;
  3. if (module.isStandAlone()) {
  4. moduleContext = earContext;
  5. earContext.addToClassPath(DEFAULT_BUNDLE_CLASSPATH);

代码示例来源:origin: org.apache.geronimo.modules/geronimo-tomcat-builder

  1. try {
  2. webModuleData.setReferencePattern("J2EEServer", moduleContext.getServerName());
  3. if (!module.isStandAlone()) {
  4. webModuleData.setReferencePattern("J2EEApplication", earContext.getModuleName());
  5. if (!module.isStandAlone()) {
  6. ConfigurationData moduleConfigurationData = moduleContext.getConfigurationData();
  7. earContext.addChildConfiguration(module.getTargetPath(), moduleConfigurationData);

代码示例来源:origin: org.apache.geronimo.modules/geronimo-jetty6-builder

  1. if (!module.isStandAlone()) {
  2. ConfigurationData moduleConfigurationData = moduleContext.getConfigurationData();
  3. earContext.addChildConfiguration(module.getTargetPath(), moduleConfigurationData);

相关文章