[SpringCloud] - 2:搭建服务端接口

  1. 服务端要进eureka注册中心,所以引入数据库、springxxx等依赖之外还需要引入eureka客户端的依赖,如下
    <!-- 导入Eureka客户端的依赖,将 微服务提供者 注册进 Eureka -->
    <dependency>
         <groupId>org.springframework.cloud</groupId>
         <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
    </dependency>

     

  2. application.yml配置(省略了如端口号和数据库的配置等)

    mybatis:
      config-location: classpath:mybatis/mybatis.cfg.xml        # mybatis配置文件所在路径
      type-aliases-package: com.  # 所有Entity别名类所在包
      mapper-locations: classpath:mybatis/mapper/**/*.xml       # mapper映射文件
    
    spring:
      application:
        name: 
      datasource:
    
    eureka:
      client:
        registerWithEureka: true # 服务注册开关
        fetchRegistry: true # 服务发现开关
        serviceUrl: # 注册到哪一个Eureka Server服务注册中心,多个中间用逗号分隔
          defaultZone: http://localhost:6001/eureka
      instance:
        instanceId: ${spring.application.name}:${server.port} 
        prefer-ip-address: true #访问路径就会显示成IP地址

    3.提供好mapper接口,xml文件,server层,controller层等等,能过根据url访问到数据库进行增删改查即可,太过简单就不贴代码了。注意把bean注册到容器里面就行 。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值