All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rxjava.security.dynamically.example.controller.DemoController Maven / Gradle / Ivy

The newest version!
package org.rxjava.security.dynamically.example.controller;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import reactor.core.publisher.Mono;

import java.util.UUID;

/**
 * @author happy 2019-06-13 13:13
 */
@RestController
public class DemoController {

    /**
     * 认证
     */
    @GetMapping("login")
    public Mono login() {
        return Mono.just(UUID.randomUUID().toString());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy