Controller.java 329 Bytes
package com.ns.restsample.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController

public class Controller {
    @RequestMapping(value="/gettoken")
    public String getToken(){
        return "Token value: 13131313131";
    }
}
GitLab Appliance - Powered by TurnKey Linux