com.github.xuchen93.web.controller.XuchenHelloController Maven / Gradle / Ivy
package com.github.xuchen93.web.controller;
import com.github.xuchen93.model.R;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("xuchen")
public class XuchenHelloController extends BaseController {
@GetMapping("hello")
public R hello() {
return R.success("hello xuchen");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy