org.springframework.bytebuddy.bytecode.ReactiveHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-bytebuddy Show documentation
Show all versions of spring-bytebuddy Show documentation
基于byte-buddy生成Spring MVC 框架的Controller
The newest version!
package org.springframework.bytebuddy.bytecode;
import org.springframework.web.reactive.function.server.ServerRequest;
import org.springframework.web.reactive.function.server.ServerResponse;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
public abstract class ReactiveHandler {
public Mono mono(ServerRequest request){
return Mono.empty();
}
public Flux flux(ServerRequest request){
return Flux.empty();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy