Skip to content

Commit

Permalink
update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhongFuCheng3y committed Aug 5, 2022
1 parent 1255d13 commit 6ba128a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@
public class AustinApplication {
public static void main(String[] args) {

// TODO 如果你需要使用apollo,将application.properties配置文件的 apollo.enabled 改为true
/**
* 如果你需要启动Apollo动态配置
* 1、启动apollo
* 2、将application.properties配置文件的 austin.apollo.enabled 改为true
* 3、下方的property替换真实的ip和port
*/
System.setProperty("apollo.config-service", "http://austin.apollo.config:5001");
SpringApplication.run(AustinApplication.class, args);
}
Expand Down
2 changes: 1 addition & 1 deletion austin-web/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ austin.redis.port=5003
austin.redis.password=austin

# TODO choose : kafka/eventBus/rocketMq/rabbitMq, default eventBus
austin.mq.pipeline=kafka
austin.mq.pipeline=eventBus

# todo [kafka] ip/port【optional】, if austin.mq.pipeline=kafka 【must】
austin.kafka.ip=austin.kafka
Expand Down

0 comments on commit 6ba128a

Please sign in to comment.