You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
SOP/doc/docs/files/10011_项目接入到SOP.md

1.4 KiB

项目接入到SOP

以springboot项目为例,springmvc目前暂不支持,以后可以支持。

  • pom.xml添加SpringCloud支持
<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>Greenwich.RELEASE</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>
  • pom.xml依赖sop-service-common和eureka
<dependency>
    <groupId>com.gitee.sop</groupId>
    <artifactId>sop-service-common</artifactId>
    <version>最新版本</version>
</dependency>

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
  • application.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,内容为空
@Configuration
public class OpenServiceConfig extends AlipayServiceConfiguration {

}

到此准备工作就完成了,接下来可前往新增接口查看如何新增接口。