Update 19.3. Using the Maven plugin.md

master
qibaoguang 2015-03-20 00:43:26 +08:00
parent 168000235d
commit 3543c9f07c
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
### 19.3. 使用Maven插件运行
Spring Boot Maven插件包含一个`run`目标,它可以用来快速编译和运行应用程序。应用程序以一种暴露的方式运行,由于即时"热"加载,你可以编辑资源。
```shell
$ mvn spring-boot:run
```
你可能想使用有用的操作系统环境变量:
```shell
$ export MAVEN_OPTS=-Xmx1024m -XX:MaxPermSize=128M -Djava.security.egd=file:/dev/./urandom
```
("egd"设置是通过为Tomcat提供一个更快的会话keys熵源来加速Tomcat的。)