2013-06-06 15:40:10 +08:00
|
|
|
# Spring Initializr
|
|
|
|
|
|
|
|
## Prerequisites
|
|
|
|
|
2014-03-09 01:00:59 +08:00
|
|
|
You need Java (1.6 or better) and a bash-like shell.
|
2013-08-06 05:10:19 +08:00
|
|
|
|
2014-03-09 01:00:59 +08:00
|
|
|
If you are on a Mac and using [homebrew](http://brew.sh/), all you need to do to install it is:
|
2013-08-06 05:10:19 +08:00
|
|
|
|
2014-08-19 17:16:26 +08:00
|
|
|
$ brew tap pivotal/tap
|
|
|
|
$ brew install springboot
|
2014-03-09 01:00:59 +08:00
|
|
|
|
2013-08-06 05:10:19 +08:00
|
|
|
It will install `/usr/local/bin/spring`. You can jump right to [running the app](#running_the_app).
|
|
|
|
|
|
|
|
An alternative way to install the `spring` command line interface can be installed like this:
|
2013-06-06 15:40:10 +08:00
|
|
|
|
2013-11-21 20:28:32 +08:00
|
|
|
$ curl start.spring.io/install.sh | bash
|
2013-06-06 15:40:10 +08:00
|
|
|
|
|
|
|
After running that command you should see a `spring` directory:
|
|
|
|
|
|
|
|
$ ./spring/bin/spring --help
|
2014-03-09 01:00:59 +08:00
|
|
|
|
|
|
|
usage: spring [--help] [--version]
|
2013-06-06 15:40:10 +08:00
|
|
|
<command> [<args>]
|
|
|
|
...
|
|
|
|
|
|
|
|
You could add that `bin` directory to your `PATH` (the examples below
|
|
|
|
assume you did that).
|
|
|
|
|
|
|
|
If you don't have `curl` or `zip` you can probably get them (for
|
2014-03-09 01:00:59 +08:00
|
|
|
Windows users we recommend [cygwin](http://cygwin.org)), or you can
|
2013-11-21 20:28:32 +08:00
|
|
|
download the [zip file](http://start.spring.io/spring.zip) and unpack
|
2013-06-06 15:40:10 +08:00
|
|
|
it yourself.
|
|
|
|
|
2014-08-18 22:14:17 +08:00
|
|
|
## Project structure
|
|
|
|
|
|
|
|
Initializr is a library that provides all the default features and a service with a very simple script
|
|
|
|
that uses the auto-configuration feature of Spring Boot. All you need is _grabbing_ the library and
|
|
|
|
create a proper configuration file with the following script:
|
|
|
|
|
|
|
|
```
|
|
|
|
package org.acme.myapp
|
|
|
|
|
|
|
|
@Grab('io.spring.initalizr:initializr:1.0.0.BUILD-SNAPSHOT')
|
|
|
|
class InitializerService { }
|
|
|
|
```
|
|
|
|
|
|
|
|
As a reference, `initializr-service` represents the _default_ service that runs at http://start.spring.io
|
|
|
|
|
2013-08-06 05:10:19 +08:00
|
|
|
<a name="running_the_app"></a>
|
2014-03-09 01:00:59 +08:00
|
|
|
## Running the app locally
|
2013-06-06 15:40:10 +08:00
|
|
|
|
2014-12-08 22:42:02 +08:00
|
|
|
Initializr currently uses a milestone release of `spring-test-htmlunit` that is available from
|
|
|
|
the [spring.io milestone repository](http://repo.spring.io/milestone). If you use a repository
|
|
|
|
manager, please make sure to configure it accordingly. For your convenience, the project defines
|
|
|
|
a `springMilestone` that you should activate if you haven't defined that repository yourself.
|
|
|
|
|
2014-08-18 22:14:17 +08:00
|
|
|
First make sure that you have built the library:
|
|
|
|
|
|
|
|
$ cd initializr
|
2014-12-08 22:42:02 +08:00
|
|
|
$ mvn clean install -PspringMilestone
|
2014-08-18 22:14:17 +08:00
|
|
|
|
|
|
|
Once you have done that, you can easily start the app using the spring command from the `initializr-service`
|
|
|
|
directory (`cd ../initializr-service`):
|
2013-06-06 15:40:10 +08:00
|
|
|
|
|
|
|
$ spring run app.groovy
|
|
|
|
|
2013-06-07 19:26:56 +08:00
|
|
|
## Deploying to Cloud Foundry
|
|
|
|
|
2014-03-09 01:00:59 +08:00
|
|
|
If you are on a Mac and using [homebrew](http://brew.sh/), install the Cloud Foundry CLI:
|
|
|
|
|
|
|
|
$ brew install cloudfoundry-cli
|
|
|
|
|
|
|
|
Alternatively, download a suitable binary for your platform from [Pivotal Web Services](https://console.run.pivotal.io/tools).
|
|
|
|
|
|
|
|
An example Cloud Foundry `manifest.yml` file is provided. You should ensure that
|
|
|
|
the application name and URL (name and host values) are suitable for your environment
|
|
|
|
before running `cf push`.
|
2014-06-13 19:04:47 +08:00
|
|
|
|
2014-08-19 22:25:42 +08:00
|
|
|
You can jar up the app and make it executable in any environment.
|
|
|
|
|
|
|
|
$ spring jar start.jar app.groovy
|
2014-06-13 19:04:47 +08:00
|
|
|
|
2014-12-08 22:42:02 +08:00
|
|
|
Once the jar has been created, you can push the application:
|
2014-08-19 22:25:42 +08:00
|
|
|
|
2014-08-12 22:53:14 +08:00
|
|
|
$ cf push start -p start.jar -n start-<space>
|
|
|
|
|
|
|
|
Where `<space>` is the name of the space. As a failsafe, and a
|
|
|
|
reminder to be explicit, the deployment will fail in production
|
|
|
|
without the `-n`. It is needed to select the route because there is a
|
2014-12-08 22:42:02 +08:00
|
|
|
manifest that defaults it to `start-development`.
|