- 服务端要进eureka注册中心,所以引入数据库、springxxx等依赖之外还需要引入eureka客户端的依赖,如下
<!-- 导入Eureka客户端的依赖,将 微服务提供者 注册进 Eureka --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> </dependency>
-
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注册到容器里面就行 。
[SpringCloud] - 2:搭建服务端接口
最新推荐文章于 2024-05-03 23:18:49 发布