大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章将为大家详细讲解有关如何搭建Spring-cloud注册服务提供者,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
我们提供的服务有:网站建设、成都网站制作、微信公众号开发、网站优化、网站认证、红花岗ssl等。为上千家企事业单位解决了网站和推广的问题。提供周到的售前咨询和贴心的售后服务,是有科学管理、有技术的红花岗网站制作公司
上文已经写了如何去搭建注册中心,仅有注册中心是远远不够的,所以我们需要注册到注册中心并提供服务的节点,这里称为注册服务提供者
前提
搭建注册中心,环境无需改变
项目搭建
这里我们需要新建一个maven项目,项目名称之前没有起好,这里就参考一下,我的是SpringCloudDemo,不要在意这些细节!
修改pom文件,参考如下:
注意:请看好这些jar包的版本号,文末我会贴出之前我搭建的两个比较简单的demo的github路径
4.0.0 com.hellxz SpringCloudDemo 0.0.1-SNAPSHOT jar SpringCloudDemo Demo project for Spring Boot org.springframework.boot spring-boot-starter-parent 1.5.9.RELEASE org.springframework.cloud spring-cloud-dependencies Camden.SR3 pom import UTF-8 UTF-8 1.8 org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-test test org.springframework.boot spring-boot-starter-actuator junit junit 4.8.2 org.springframework.cloud spring-cloud-starter-eureka org.springframework.cloud spring-cloud-config-server org.springframework.boot spring-boot-maven-plugin org.apache.maven.plugins maven-compiler-plugin 1.8
虽然版本号不同于EurekaServer注册中心项目,但是经实践是可以正常使用的,请放心
新建一个启动类(每个springboot项目中都有)
package com.hellxz.springcloudhelloworld; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; /** * @Author : Hellxz * @Description: EurekaClient * @Date : 2018/4/13 16:57 */ @EnableDiscoveryClient @SpringBootApplication public class SpringCloudDemoApplication { public static void main(String[] args) { SpringApplication.run(SpringCloudDemoApplication.class, args); } }
新建一个controller类,留作之后测试
package com.hellxz.springcloudhelloworld; import org.apache.log4j.Logger; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.cloud.client.ServiceInstance; import org.springframework.cloud.client.discovery.DiscoveryClient; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; /** * @Author : Hellxz * @Description: 服务提供者 * @Date : 2018/4/12 11:36 */ @RestController public class SpringbootController { @Autowired private DiscoveryClient client; //注入发现客户端 private final Logger logger = Logger.getLogger(SpringbootController.class); @RequestMapping(value = "/hello", method = RequestMethod.GET) public String hello(){ //获取服务实例,作用为之后console显示效果 ServiceInstance serviceInstance = client.getLocalServiceInstance(); logger.info("/hello host:"+serviceInstance.getHost()+" service_id:" +serviceInstance.getServiceId()); return "hello"; } }
在src/resources文件夹下创建application.yml 这次使用yaml进行配置,如果想尝试properties文件方式,请参考上文,此处配置的提供服务地址请参考注册中心的配置
server: port: 8080 spring: application: name: hello-service eureka: client: serviceUrl: defaultZone: http://localhost:1111/eureka/
好了,我们将这个项目跑在8080端口,并可以去注册中心注册服务了
先启动注册中心的项目,待其启动完毕之后,在来启动本项目。
测试
输入注册中心的url查看:localhost:1111
访问刚才配置的controller路径: http://localhost:8080/hello
如右图所示,注册成功。
此时我们就可以使用这个项目进行提供服务了
关于“如何搭建Spring-cloud注册服务提供者”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。