blob: 080d096af2bc920d67eafea2fdf627ffcff1e9b7 [file] [log] [blame] [view]
# Shenyu example Sofa
***
## Run
You can run server with http/zookeeper/etcd register center
### run with etcd register center
#### Shenyu-Admin config
add etcd register center dependency in shenyu-admin:
```xml
<dependency>
<groupId>org.apache.shenyu</groupId>
<artifactId>shenyu-register-server-etcd</artifactId>
<version>${project.version}</version>
</dependency>
```
set etcd register config in shenyu-admin:
```yaml
shenyu:
register:
registerType: etcd
serverLists : http://localhost:2379
```
#### shenyu-java-examples-sofa-service config
set etcd register config:
```yaml
shenyu:
client:
registerType: etcd #http #zookeeper #etcd
serverLists: http://localhost:2379 #http://localhost:9095 #localhost:2181 #http://localhost:2379
props:
contextPath: /sofa
appName: sofa
port: 8888
```
run TestSofaApplication