32 lines
1015 B
Java
32 lines
1015 B
Java
package com.ruoyi.gateway.config;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.http.MediaType;
|
|
import org.springframework.web.reactive.function.server.RequestPredicates;
|
|
import org.springframework.web.reactive.function.server.RouterFunction;
|
|
import org.springframework.web.reactive.function.server.RouterFunctions;
|
|
import com.ruoyi.gateway.handler.ValidateCodeHandler;
|
|
|
|
/**
|
|
* 路由配置信息
|
|
*
|
|
* @author ruoyi
|
|
*/
|
|
@Configuration
|
|
public class RouterFunctionConfiguration
|
|
{
|
|
@Autowired
|
|
private ValidateCodeHandler validateCodeHandler;
|
|
|
|
@SuppressWarnings("rawtypes")
|
|
@Bean
|
|
public RouterFunction routerFunction()
|
|
{
|
|
return RouterFunctions.route(
|
|
RequestPredicates.GET("/code").and(RequestPredicates.accept(MediaType.TEXT_PLAIN)),
|
|
validateCodeHandler);
|
|
}
|
|
}
|