# 项目接入到SOP 以springboot项目为例,完整项目可参考sop-example下的sop-story - pom.xml添加版本配置 ```xml Greenwich.RELEASE 0.9.0.RELEASE 1.1.0 ``` - pom.xml添加SpringCloud支持 ```xml org.springframework.cloud spring-cloud-dependencies Greenwich.RELEASE pom import ``` - pom.xml依赖sop-service-common和nacos服务发现 ```xml com.gitee.sop sop-service-common 最新版本 org.springframework.cloud spring-cloud-starter-alibaba-nacos-discovery ${spring-cloud-alibaba-nacos.version} com.alibaba.nacos nacos-client ${nacos-client.version} ``` - application.properties配置文件添加 ```properties server.port=2222 # 服务名称 spring.application.name=story-service # nacos注册中心 spring.cloud.nacos.discovery.server-addr=127.0.0.1:8848 ``` - 在springboot启动类上添加`@EnableDiscoveryClient` - 新增一个配置类,继承`AlipayServiceConfiguration.java`,内容为空 ```java @Configuration public class OpenServiceConfig extends AlipayServiceConfiguration { } ``` 到此准备工作就完成了,接下来可前往`新增接口`查看如何新增接口。