Commit 7f9d2929 by yangjinjue

修改readme

parent fd8258a1
......@@ -16,16 +16,16 @@ spring.dubbo.module.default=false
`spring.dubbo.scan`表示要扫描的`package`目录。
* 启动入口 `com.zhiwei.demo.server.Server`
```$xslt
```
@SpringBootApplication
public class Server {
public class Server {
private static Logger logger = LoggerFactory.getLogger(Server.class);
public static void main(String[] args) {
logger.info("SpringBoot initial Before");
ConfigurableApplicationContext run = SpringApplication.run(Server.class, args);
logger.info("SpringBoot initial After");
}
}
}
```
### 2. 客户端介绍
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment