See More

# Java Main Container The Java Main Container allows an application that provides a class with a `main()` method to be run. The application is executed with a command of the form: ```bash /bin/java -cp . com.gopivotal.SampleClass ``` Command line arguments may optionally be configured.
Detection CriteriaMain-Class attribute set in META-INF/MANIFEST.MF or java_main_class set in config/java_main.yml
Tags java-main
Tags are printed to standard output by the buildpack detect script If the application uses Spring, [Spring profiles][] can be specified by setting the [`SPRING_PROFILES_ACTIVE`][] environment variable. This is automatically detected and used by Spring. The Spring Auto-reconfiguration Framework will specify the `cloud` profile in addition to any others. ## Spring Boot If the main class is Spring Boot's `JarLauncher`, `PropertiesLauncher` or `WarLauncher`, the Java Main Container adds a `--server.port` argument to the command so that the application uses the correct port. ## Configuration For general information on configuring the buildpack, refer to [Configuration and Extension][]. The container can be configured by creating or modifying the `config/java_main.yml` file in the buildpack fork. | Name | Description | ---- | ----------- | `arguments` | Optional command line arguments to be passed to the Java main class. The arguments are specified as a single YAML scalar in plain style or enclosed in single or double quotes. | `java_main_class` | The Java class name to run. Values containing whitespace are rejected with an error, but all others values appear without modification on the Java command line. If not specified, the Java Manifest value of `Main-Class` is used. [Configuration and Extension]: ../README.md#configuration-and-extension [Spring profiles]:http://blog.springsource.com/2011/02/14/spring-3-1-m1-introducing-profile/ [`SPRING_PROFILES_ACTIVE`]: http://static.springsource.org/spring/docs/3.1.x/javadoc-api/org/springframework/core/env/AbstractEnvironment.html#ACTIVE_PROFILES_PROPERTY_NAME