# weblogic-buildpack **Repository Path**: fengtc/weblogic-buildpack ## Basic Information - **Project Name**: weblogic-buildpack - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-12-17 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Cloud Foundry WebLogic Buildpack The `weblogic-buildpack` is a custom [Cloud Foundry] buildpack, based on a fork of the [Java-Buildpack][], for running JEE applications with WebLogic Server as container on Cloud Foundry. The WLS Buildpack is more of a proof of the concept and a demo/preview and not an official supported buildpack. At the time of creation of this buildpack, there was no Diego or Docker support. But since late 2015, Diego supports working with docker images. Users are suggested to explore the Docker option for WebLogic Server when possible if it meets their requirements, compared to customizing, building and maintainng the buildpack. Links: https://github.com/oracle/docker-images/tree/master/OracleWebLogic https://docs.oracle.com/middleware/1213/wls/DOCKR/configuration.htm#DOCKR121 The [Java-Buildpack] itself is a [Cloud Foundry][] buildpack for running JVM-based applications. It is designed to run many JVM-based applications ([Grails][], [Groovy][], Java Main, [Play Framework][], [Spring Boot][], and Servlet) with no additional configuration, but supports configuration of the standard components, and extension to add custom components. ## Usage To use this buildpack specify the URI of the repository when pushing an application to Cloud Foundry: ```bash $ cf push -p -b https://github.com/pivotal-cf/weblogic-buildpack.git ``` ## Examples The following are _very_ simple examples for deploying the artifact types that we support. * [Embedded web server](docs/example-embedded-web-server.md) * [Grails](docs/example-grails.md) * [Groovy](docs/example-groovy.md) * [Java Main](docs/example-java_main.md) * [Play Framework](docs/example-play_framework.md) * [Servlet](docs/example-servlet.md) * [Spring Boot CLI](docs/example-spring_boot_cli.md) ## Configuration and Extension The buildpack supports extension through the use of Git repository forking. The easiest way to accomplish this is to use [GitHub's forking functionality][] to create a copy of this repository. Make the required extension changes in the copy of the repository. Then specify the URL of the new repository when pushing Cloud Foundry applications. If the modifications are generally applicable to the Cloud Foundry community, please submit a [pull request][] with the changes. Buildpack configuration can be overridden with an environment variable matching the configuration file you wish to override minus the `.yml` extension and with a prefix of `JBP_CONFIG`. It is not possible to add new configuration properties and properties with `nil` or empty values will be ignored by the buildpack. The value of the variable should be valid inline yaml, referred to as `flow style` in the yaml spec ([Wikipedia] has a good description of this yaml syntax). For example, to change the default version of Java to 7 and adjust the memory heuristics apply this environment variable to the application. ```bash $ cf set-env my-application JBP_CONFIG_OPEN_JDK_JRE '{jre: { version: 1.7.0_+ }}' ``` If the key or value contains a special character such as `:` it should be escaped with double quotes. For example, to change the default repository path for the buildpack. ```bash $ cf set-env my-application JBP_CONFIG_REPOSITORY '{default_repository_root: "http://repo.example.io"}' ``` If the key or value contains an environment variable that you want to bind at runtime you need to escape it from your shell. For example, to add command line arguments containing an environment variable to a [Java Main](docs/container-java_main.md) application. ```bash $ cf set-env my-application JBP_CONFIG_JAVA_MAIN '{arguments: "-server.port=\$PORT -foo=bar"}' ``` Environment variable can also be specified in the applications `manifest` file. For example, to specify an environment variable in an applications manifest file that disables Auto-reconfiguration. ```bash env: JBP_CONFIG_SPRING_AUTO_RECONFIGURATION: '{enabled: false}' ``` This final example shows how to change the version of Tomcat that is used by the buildpack with an environment variable specified in the applications manifest file. ```bash env: JBP_CONFIG_TOMCAT: '{tomcat: { version: 8.0.+ }}' ``` See the [Environment Variables][] documentation for more information. To learn how to configure various properties of the buildpack, follow the "Configuration" links below. More information on extending the buildpack is available [here](docs/extending.md). ## Additional Documentation * [Design](docs/design.md) * [Security](docs/security.md) * Standard Containers * [Dist ZIP](docs/container-dist_zip.md) * [Groovy](docs/container-groovy.md) ([Configuration](docs/container-groovy.md#configuration)) * [Java Main](docs/container-java_main.md) ([Configuration](docs/container-java_main.md#configuration)) * [Play Framework](docs/container-play_framework.md) * [Ratpack](docs/container-ratpack.md) * [Spring Boot](docs/container-spring_boot.md) * [Spring Boot CLI](docs/container-spring_boot_cli.md) ([Configuration](docs/container-spring_boot_cli.md#configuration)) * [WebLogic](docs/container-wls.md) ([Configuration](docs/container-wls.md#configuration)) * Standard Frameworks * [AppDynamics Agent](docs/framework-app_dynamics_agent.md) ([Configuration](docs/framework-app_dynamics_agent.md#configuration)) * [Container Certificate Trust Store](docs/framework-container_certificate_trust_store.md) ([Configuration](docs/framework-container_certificate_trust_store.md#configuration)) * [Container Customizer](docs/framework-container_customizer.md) ([Configuration](docs/framework-container_customizer.md#configuration)) * [Debug](docs/framework-debug.md) ([Configuration](docs/framework-debug.md#configuration)) * [Dynatrace Appmon Agent](docs/framework-dynatrace_appmon_agent.md) ([Configuration](docs/framework-dynatrace_appmon_agent.md#configuration)) * [Dynatrace SaaS/Managed OneAgent](docs/framework-dynatrace_one_agent.md) ([Configuration](docs/framework-dynatrace_one_agent.md#configuration)) * [Introscope Agent](docs/framework-introscope_agent.md) ([Configuration](docs/framework-introscope_agent.md#configuration)) * [Java Options](docs/framework-java_opts.md) ([Configuration](docs/framework-java_opts.md#configuration)) * [JRebel Agent](docs/framework-jrebel_agent.md) ([Configuration](docs/framework-jrebel_agent.md#configuration)) * [JMX](docs/framework-jmx.md) ([Configuration](docs/framework-jmx.md#configuration)) * [Luna Security Provider](docs/framework-luna_security_provider.md) ([Configuration](docs/framework-luna_security_provider.md#configuration)) * [MariaDB JDBC](docs/framework-maria_db_jdbc.md) ([Configuration](docs/framework-maria_db_jdbc.md#configuration)) * [New Relic Agent](docs/framework-new_relic_agent.md) ([Configuration](docs/framework-new_relic_agent.md#configuration)) * [Play Framework Auto Reconfiguration](docs/framework-play_framework_auto_reconfiguration.md) ([Configuration](docs/framework-play_framework_auto_reconfiguration.md#configuration)) * [Play Framework JPA Plugin](docs/framework-play_framework_jpa_plugin.md) ([Configuration](docs/framework-play_framework_jpa_plugin.md#configuration)) * [PostgreSQL JDBC](docs/framework-postgresql_jdbc.md) ([Configuration](docs/framework-postgresql_jdbc.md#configuration)) * [Spring Auto Reconfiguration](docs/framework-spring_auto_reconfiguration.md) ([Configuration](docs/framework-spring_auto_reconfiguration.md#configuration)) * [Spring Insight](docs/framework-spring_insight.md) * [YourKit Profiler](docs/framework-your_kit_profiler.md) ([Configuration](docs/framework-your_kit_profiler.md#configuration)) * Standard JREs * [OpenJDK](docs/jre-open_jdk_jre.md) ([Configuration](docs/jre-open_jdk_jre.md#configuration)) * [Oracle](docs/jre-oracle_jre.md) ([Configuration](docs/jre-oracle_jre.md#configuration)) * [Azul Zulu](docs/jre-zulu_jre.md) ([Configuration](docs/jre-zulu_jre.md#configuration)) * [Extending](docs/extending.md) * [Application](docs/extending-application.md) * [Droplet](docs/extending-droplet.md) * [BaseComponent](docs/extending-base_component.md) * [VersionedDependencyComponent](docs/extending-versioned_dependency_component.md) * [ModularComponent](docs/extending-modular_component.md) * [Caches](docs/extending-caches.md) ([Configuration](docs/extending-caches.md#configuration)) * [Logging](docs/extending-logging.md) ([Configuration](docs/extending-logging.md#configuration)) * [Repositories](docs/extending-repositories.md) ([Configuration](docs/extending-repositories.md#configuration)) * [Utilities](docs/extending-utilities.md) * [Debugging the Buildpack](docs/debugging-the-buildpack.md) * [Buildpack Modes](docs/buildpack-modes.md) * Related Projects * [Java Buildpack Dependency Builder](https://github.com/cloudfoundry/java-buildpack-dependency-builder) * [Java Test Applications](https://github.com/cloudfoundry/java-test-applications) * [Java Buildpack System Tests](https://github.com/cloudfoundry/java-buildpack-system-test) ## Building Packages The buildpack can be packaged up so that it can be uploaded to Cloud Foundry using the `cf create-buildpack` and `cf update-buildpack` commands. In order to create these packages, the rake `package` task is used. ### Online Package The online package is a version of the buildpack that is as minimal as possible and is configured to connect to the network for all dependencies. This package is about 50K in size. To create the online package, run: ```bash $ bundle install $ bundle exec rake package ... Creating build/weblogic-buildpack-cfd6b17.zip ``` ### Offline Package The offline package is a version of the buildpack designed to run without access to a network. It packages the latest version of each dependency (as configured in the [`config/` directory][]) and [disables `remote_downloads`][]. This package is about 380M in size. To create the offline package, use the `OFFLINE=true` argument: To pin the version of dependencies used by the buildpack to the ones currently resolvable use the `PINNED=true` argument. This will update the [`config/` directory][] to contain exact version of each dependency instead of version ranges. ```bash $ bundle install $ bundle exec rake package OFFLINE=true PINNED=true ... Creating build/weblogic-buildpack-offline-cfd6b17.zip ``` ### Package Versioning Keeping track of different versions of the buildpack can be difficult. To help with this, the rake `package` task puts a version discriminator in the name of the created package file. The default value for this discriminator is the current Git hash (e.g. `cfd6b17`). To change the version when creating a package, use the `VERSION=` argument: ```bash $ bundle install $ bundle exec rake package VERSION=2.1 ... Creating build/weblogic-buildpack-2.1.zip ``` ## Running Tests To run the tests, do the following: ```bash $ bundle install $ bundle exec rake ``` [Running Cloud Foundry locally][] is useful for privately testing new features. ## Contributing [Pull requests][] are welcome; see the [contributor guidelines][] for details. ## License This buildpack is released under version 2.0 of the [Apache License][]. [`config/` directory]: config [Apache License]: http://www.apache.org/licenses/LICENSE-2.0 [Cloud Foundry]: http://www.cloudfoundry.org [contributor guidelines]: CONTRIBUTING.md [disables `remote_downloads`]: docs/extending-caches.md#configuration [Environment Variables]: http://docs.cloudfoundry.org/devguide/deploy-apps/manifest.html#env-block [GitHub's forking functionality]: https://help.github.com/articles/fork-a-repo [Grails]: http://grails.org [Groovy]: http://groovy.codehaus.org [Play Framework]: http://www.playframework.com [pull request]: https://help.github.com/articles/using-pull-requests [Pull requests]: http://help.github.com/send-pull-requests [Running Cloud Foundry locally]: http://docs.cloudfoundry.org/deploying/boshlite/index.html [Spring Boot]: http://projects.spring.io/spring-boot/ [Wikipedia]: https://en.wikipedia.org/wiki/YAML#Basic_components_of_YAML