@@ -5,11 +5,11 @@ spring:
driver-class-name: com.mysql.jdbc.Driver
username: root
password: root
- url: jdbc:mysql://114.116.45.246:13306/pigx?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false
+ url: jdbc:mysql://127.0.0.1:3306/pigx?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false
elasticjob:
# 分布式任务协调依赖zookeeper
zookeeper:
- server-lists: 139.224.200.249:2181
+ server-lists: 127.0.0.1:2181
namespace: pigx-daemon
# 普通任务
simples:
@@ -32,7 +32,7 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
protected void configure(HttpSecurity http) throws Exception {
http.csrf().disable()
.authorizeRequests()
- .antMatchers("actuator/**").permitAll()
+ .antMatchers("/actuator/**").permitAll()
.anyRequest()
.authenticated().and().httpBasic();
}
@@ -8,6 +8,12 @@ spring:
password: pig
application:
name: pigx-eureka
+ boot:
+ admin:
+ client:
+ url: http://localhost:5001
+ instance:
+ name: PIGX-EUREKA
# docker-compose部署时候 hostname 换成pigx-eureka
# 类似的 redis 使用pigx-redis ,gateway 换成 pigx-gateway
@@ -3,7 +3,7 @@ server:
spring:
- name: pigx-daemon
+ name: pigx-monitor
#配置中心
cloud:
config: