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

com.github.xuchen93.web.controller.XuchenHelloController Maven / Gradle / Ivy

There is a newer version: 1.1.3
Show newest version
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