欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

简述springboot及springboot cloud环境搭建

程序员文章站 2023-12-06 13:14:04
springboot使用特定的方式,简化了spring的各种xml配置文件,并通过maven或者gradle,完成所需依赖,使用springboot maven插件,可直接...

springboot使用特定的方式,简化了spring的各种xml配置文件,并通过maven或者gradle,完成所需依赖,使用springboot maven插件,可直接输出可运行的jar包,省去了tomcat等容器的部署,使得基于http的网络应用开发更加方便快捷。

spring中配置文件官方文档http://docs.spring.io/spring-boot/docs/1.5.1.release/reference/htmlsingle/

springboot基础应用搭建

首先建立maven工程。

pom.xml文件配置如下(每一个maven工程中的,除了自身gav外,都使用此配置)

<?xml version="1.0" encoding="utf-8"?>
<project xmlns="http://maven.apache.org/pom/4.0.0" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"
 xsi:schemalocation="http://maven.apache.org/pom/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 <modelversion>4.0.0</modelversion>
 <groupid>com.mahuan</groupid>
 <artifactid>producer</artifactid>
 <version>0.0.1-snapshot</version>
 <packaging>jar</packaging>
 <name>producer</name>
 <description>demo project for spring boot</description>
 <!-- lookup parent from repository -->
 <parent>
  <groupid>org.springframework.boot</groupid>
  <artifactid>spring-boot-starter-parent</artifactid>
  <version>1.5.1.release</version>
  <relativepath />
 </parent>
 <properties>
  <project.build.sourceencoding>utf-8</project.build.sourceencoding>
  <project.reporting.outputencoding>utf-8</project.reporting.outputencoding>
  <java.version>1.8</java.version>
 </properties>
 <dependencies>
  <dependency>
   <groupid>org.springframework.boot</groupid>
   <artifactid>spring-boot-starter-web</artifactid>
  </dependency>
  <dependency>
   <groupid>org.springframework.boot</groupid>
   <artifactid>spring-boot-starter-test</artifactid>
   <scope>test</scope>
  </dependency>
  <dependency>
   <groupid>org.springframework.cloud</groupid>
   <artifactid>spring-cloud-starter-config</artifactid>
  </dependency>
  <dependency>
   <groupid>org.springframework.cloud</groupid>
   <artifactid>spring-cloud-starter-eureka</artifactid>
  </dependency>
  <dependency>
   <groupid>org.springframework.cloud</groupid>
   <artifactid>spring-cloud-starter-eureka-server</artifactid>
  </dependency>
  <dependency>
   <groupid>org.springframework.cloud</groupid>
   <artifactid>spring-cloud-starter-feign</artifactid>
  </dependency>
    <dependency>
   <groupid>org.springframework.boot</groupid>
   <artifactid>spring-boot-devtools</artifactid>
   <optional>true</optional>
  </dependency>
 </dependencies>
 <build>
  <plugins>
   <plugin>
    <groupid>org.springframework.boot</groupid>
    <artifactid>spring-boot-maven-plugin</artifactid>
    <configuration>
     <fork>true</fork>
    </configuration>
   </plugin>
  </plugins>
 </build>
 <dependencymanagement>
  <dependencies>
   <dependency>
    <groupid>org.springframework.cloud</groupid>
    <artifactid>spring-cloud-dependencies</artifactid>
    <version>camden.sr6</version>
    <type>pom</type>
    <scope>import</scope>
   </dependency>
  </dependencies>
 </dependencymanagement>
</project>  

建立一个启动类,即可运行。默认端口为8080。

package com.mahuan.producer;
import org.springframework.boot.springapplication;
import org.springframework.boot.autoconfigure.springbootapplication;
@springbootapplication
public class app {
 public static void main(string[] args) throws exception {
  springapplication.run(app.class, args);
 }
}

springboot启动时,会自动扫描所有class文件,发现@service、@restcontroller等注解的class文件,加载到ioc容器中。

springboot cloud注册中心

为了对多个springboot应用进行发现以及管理,可使用eureka服务。在启动类中增加@enableeurekaserver即可。同时添加配置文件。

eureka注册中心,会等待应用主动向其进行注册,而eureka注册中心在发现了新的应用后,会持续向应用发送心跳,判断其是否存活,并定时向注册中心发送心跳包,告知其存活情况。

package com.mahuan.producer;
import org.springframework.boot.springapplication;
import org.springframework.boot.autoconfigure.springbootapplication;
import org.springframework.cloud.netflix.eureka.server.enableeurekaserver;
@springbootapplication
@enableeurekaserver
public class app {
 public static void main(string[] args) throws exception {
  springapplication.run(app.class, args);
 }
}
application.properties
server.port=1111
eureka.client.registerwitheureka=false
eureka.client.fetchregistry=false
eureka.client.serviceurl.defaultzone=http://localhost:${server.port}/eureka/

eureka.client.registerwitheureka表示eureka中心不会自己注册自己。

springboot cloud生产者

如果springboot应用配置了eureka注册中心,并在启动类中增加了@enablediscoveryclient注解,应用启动后会注册到指定的注册中心中。

package com.mahuan.producer;
import org.springframework.boot.springapplication;
import org.springframework.boot.autoconfigure.springbootapplication;
import org.springframework.cloud.client.discovery.enablediscoveryclient;
@springbootapplication
@enablediscoveryclient
public class app {
 public static void main(string[] args) throws exception {
  springapplication.run(app.class, args);
 }
}
application.properties配置
server.port=1112
spring.application.name=compute-service
eureka.client.serviceurl.defaultzone=http://localhost:1111/eureka/

其中spring.application.name是必须要有的配置,是此springboot应用的标识。实现不同功能的springboot应用,应有不同的name。

eureka.client.serverurl.defaultzone是注册中心的地址信息,同注册中心配置的地址相同。

此外由于注册中心的存在,我们不必再固定生产者的启动端口,可通过启动程序控制springboot启动时,使用的端口。

当然固定的端口号,会更加方便运维。

注意,此时程序代码对于启动的配置操作,是优先于配置文件配置的。

@springbootapplication 
public class application extends springbootservletinitializer implements embeddedservletcontainercustomizer{ 
 public static void main(string[] args) { 
  springapplication.run(application.class, args); 
 } 
 @override 
 public void customize(configurableembeddedservletcontainer container) { 
  ///todo 获取未被占用的端口
  int port=8080
  container.setport(port); 
 } 
}

springboot cloud消费者

首先application.properties中要有eureka的配置信息,同上述的配置信息相同。

springboot的消费者有两种形式实现。

resttemplate

在启动类中增加@bean

package com.mahuan.producer;
import org.springframework.boot.springapplication;
import org.springframework.boot.autoconfigure.springbootapplication;
import org.springframework.cloud.client.discovery.enablediscoveryclient;
import org.springframework.cloud.client.loadbalancer.loadbalanced;
import org.springframework.context.annotation.bean;
import org.springframework.web.client.resttemplate;
@springbootapplication
@enablediscoveryclient
public class app {
 @bean
 @loadbalanced
 resttemplate resttemplate() {
  return new resttemplate();
 }
 public static void main(string[] args) throws exception {
  springapplication.run(app.class, args);
 }
}

建立一个controller类

package com.mahuan.producer.controller;
import org.springframework.beans.factory.annotation.autowired;
import org.springframework.web.bind.annotation.requestmapping;
import org.springframework.web.bind.annotation.responsebody;
import org.springframework.web.bind.annotation.restcontroller;
import org.springframework.web.client.resttemplate;
@restcontroller
public class firstcontrller2 {
 @autowired
 resttemplate resttemplate;
 @requestmapping(value = "/first")
 @responsebody
 public string first() {
  return resttemplate.getforentity("http://compute-service/first", string.class).getbody();
 }
}

其中标红部分,为需要调用的application的name,后面为调用的path。如果在注册中心中有多个拥有相同application.name的应用,会自动进行负载均衡。

feign

建立一个interface

package com.mahuan.producer.controller;
import org.springframework.boot.autoconfigure.condition.conditionalonclass;
import org.springframework.cloud.netflix.feign.feignclient;
import org.springframework.web.bind.annotation.requestmapping;
import org.springframework.web.bind.annotation.requestmethod;
@feignclient(name = "compute-service")
public interface computeservice {
 @requestmapping(method = requestmethod.get, value = "/first")
 string first();
}

其中@feignclient说明要调用的application.name,@requestmapping中说明调用的应用path。

在controller类中,直接@autowired此接口即可。

同时启动类中,需要增加@enablefeignclients注解。

package com.mahuan.producer;
import org.springframework.boot.springapplication;
import org.springframework.boot.autoconfigure.springbootapplication;
import org.springframework.cloud.client.discovery.enablediscoveryclient;
import org.springframework.cloud.netflix.feign.enablefeignclients;
@springbootapplication
@enablediscoveryclient
@enablefeignclients
public class app {
 public static void main(string[] args) throws exception {
  springapplication.run(app.class, args);
 }
}

以上所述是小编给大家介绍的springboot及springboot cloud环境搭建,希望对大家有所帮助