Zuul是Spring Cloud提供的api網關和過濾組件,它提供以下功能:java
在本教程中,咱們將用zuul,把web端的請求/product
轉發到對應的產品服務上,而且定義一個pre過濾器來驗證是否通過了zuul的轉發。git
Gitee碼雲web
在IntelliJ中建立一個maven項目:spring
而後在pom.xml
中添加以下代碼:apache
<?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>cn.zxuqian</groupId> <artifactId>apiGateway</artifactId> <version>1.0-SNAPSHOT</version> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.1.RELEASE</version> </parent> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <!-- name has changed, before: spring-cloud-starter-zuul --> <artifactId>spring-cloud-starter-netflix-zuul</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-config</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>Finchley.M9</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <properties> <java.version>1.8</java.version> </properties> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> <repositories> <repository> <id>spring-milestones</id> <name>Spring Milestones</name> <url>https://repo.spring.io/libs-milestone</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> </project>
須要注意的是,Spring官網的教程給的zuul的artifactId爲spring-cloud-starter-zuul,這個是舊版zuul的名字,在咱們的Finchley.M9
版本中已經改名爲spring-cloud-starter-netflix-zuul
。bootstrap
添加src/main/resources/bootstrap.yml
文件,指定spring.application.name
:api
spring: application: name: zuul-server
建立cn.zxuqian.Application
類:瀏覽器
package cn.zxuqian; import cn.zxuqian.filters.PreFilter; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; import org.springframework.cloud.netflix.zuul.EnableZuulProxy; import org.springframework.context.annotation.Bean; @EnableZuulProxy @EnableDiscoveryClient @SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } @Bean public PreFilter preFilter() { return new PreFilter(); } } 這裏使用了`@EnableZuulProxy`來指定使用zuul的反向代理,把咱們的請求轉發到對應的服務器上。而後啓用了`eureka`的服務發現。Zuul默認也會使用Ribbon作負載均衡,因此能夠經過eureka發現已註冊的服務。`PreFilter`是一個預過濾器,用來在request請求被處理以前進行一些操做,它的代碼以下:
package cn.zxuqian.filters;安全
import com.netflix.zuul.ZuulFilter;
import com.netflix.zuul.context.RequestContext;
import com.netflix.zuul.exception.ZuulException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;服務器
import javax.servlet.http.HttpServletRequest;
public class PreFilter extends ZuulFilter {
private static Logger log = LoggerFactory.getLogger(PreFilter.class); @Override public String filterType() { return "pre"; } @Override public int filterOrder() { return 1; } @Override public boolean shouldFilter() { return true; } @Override public Object run() throws ZuulException { RequestContext ctx = RequestContext.getCurrentContext(); HttpServletRequest request = ctx.getRequest(); log.info(String.format("%s 方式請求 %s", request.getMethod(), request.getRequestURL().toString())); return null; }
}
`filterType` - Zuul內置的filter類型有四種,`pre`, `route`,`post`,`error`,分別表明請求處理前,處理時,處理後和出錯後。 `filterOrder` - 指定了該過濾器執行的順序。 `shouldFilter` - 是否開啓此過濾器。 `run` - 過濾器的業務邏輯。這裏只是簡單的log了一下reqeust的請求方式和請求的路徑。 接下來,在咱們的配置中心的git倉庫中建立`zuul-server.yml`文件,並添加以下配置:
server:
port: 8083
zuul:
routes:
products: path: /product/** serviceId: product-service
這裏配置了zuul的端口爲8083,而後映射全部`/product/`的請求到咱們的`product-service`服務上。若是不配置`serviceId`,那麼`products`這個Key就會默認做爲ServiceId,而咱們的例子中,ServiceId包括了`-`,因此在下邊顯示指定了ServiceId。配置完成後提交到git。 ## 更新productService productService的uri作了一點改動,使其更符合rest風格:
@RequestMapping("/list")
public String productList() {
log.info("Access to /products endpoint"); return "外套,夾克,毛衣,T恤";
}
這裏`@RequestMapping`匹配的路徑改成了`/list`,以前是`/products`。 ## 更新web客戶端 在咱們的web客戶端的`ProductService`中添加一個新的方法:
public String productListZuul() {
return this.restTemplate.getForObject("http://zuul-server/product/list", String.class);
}
此次咱們直接請求`zuul-server`服務,而後由它把咱們的請求反射代理到`product-service`服務。最後在`ProductController`中添加一個請求處理方法:
@RequestMapping("/product/list")
public String productListZuul() {
return productService.productListZuul();
}
用來處理`/product/list`請求,而後調用`ProductService`類中的方法。 ## 測試 使用`mvn spring-boot:run`啓動`configServer`,`registry`, `zuulServer`, `productService`,`web`這幾個工程,而後啓動第二個`productService`,使用`SERVER_PORT=8082 spring-boot:run`。 訪問幾回`http://localhost:8080/product/list`,而後除了會在瀏覽器看到返回的結果,咱們還會在`zuulServer`的命令行窗口中看到以下字樣: > GET 方式請求 http://xuqians-imac:8083/product/list 而後在兩個`productService`的命令行窗口中,咱們還會看到隨機出現的 > Access to /products endpoint 說明`zuulServer`也會自動進行負載均衡。 歡迎訪問個人博客[張旭乾的博客]("http://zxuqian.cn/spring-cloud-tutorial-zuul/") 你們有什麼想法歡迎來討論。