From 3543c9f07cee60d2b8ecd129296204e2be5a5801 Mon Sep 17 00:00:00 2001 From: qibaoguang Date: Fri, 20 Mar 2015 00:43:26 +0800 Subject: [PATCH] Update 19.3. Using the Maven plugin.md --- .../19.3. Using the Maven plugin.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/III. Using Spring Boot/19.3. Using the Maven plugin.md b/III. Using Spring Boot/19.3. Using the Maven plugin.md index e69de29..9615145 100644 --- a/III. Using Spring Boot/19.3. Using the Maven plugin.md +++ b/III. Using Spring Boot/19.3. Using the Maven plugin.md @@ -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的。)