loader = ServiceLoader.load(LauncherService.class);
loader.forEach(launcherService -> launcherService.launcher(builder, appName, profile));
diff --git a/blade-core-launch/src/main/java/org/springblade/core/launch/consul/ConsulConstant.java b/blade-core-launch/src/main/java/org/springblade/core/launch/constant/ConsulConstant.java
similarity index 95%
rename from blade-core-launch/src/main/java/org/springblade/core/launch/consul/ConsulConstant.java
rename to blade-core-launch/src/main/java/org/springblade/core/launch/constant/ConsulConstant.java
index 436443d..8a4a6fe 100644
--- a/blade-core-launch/src/main/java/org/springblade/core/launch/consul/ConsulConstant.java
+++ b/blade-core-launch/src/main/java/org/springblade/core/launch/constant/ConsulConstant.java
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package org.springblade.core.launch.consul;
+package org.springblade.core.launch.constant;
/**
* Consul常量.
diff --git a/blade-core-launch/src/main/java/org/springblade/core/launch/constant/NacosConstant.java b/blade-core-launch/src/main/java/org/springblade/core/launch/constant/NacosConstant.java
new file mode 100644
index 0000000..d7e2ea6
--- /dev/null
+++ b/blade-core-launch/src/main/java/org/springblade/core/launch/constant/NacosConstant.java
@@ -0,0 +1,39 @@
+/**
+ * Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com).
+ *
+ * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE 3.0;
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.gnu.org/licenses/lgpl.html
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.springblade.core.launch.constant;
+
+/**
+ * Nacos常量.
+ *
+ * @author Chill
+ */
+public interface NacosConstant {
+
+ /**
+ * nacos 地址
+ */
+ String NACOS_ADDR = "127.0.0.1:8848";
+
+ /**
+ * nacos 配置前缀
+ */
+ String NACOS_CONFIG_PREFIX = "blade";
+
+ /**
+ * nacos 配置文件类型
+ */
+ String NACOS_CONFIG_FORMAT = "yaml";
+}
diff --git a/pom.xml b/pom.xml
index 8a7e5a2..8e4aaa9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -49,6 +49,7 @@
3.4.2
2.0.2
1.0.1
+ 0.2.1.RELEASE
2.0.7.RELEASE
Finchley.SR2