| 1234567891011121314151617181920212223242526272829303132333435 |
- package com.uas.eis.controller.test;
- import com.uas.eis.service.test.TestService;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * Created by zdw
- * 2018-09-18 18:47.
- */
- @RestController
- @RequestMapping("/test")
- public class TestController {
- @Autowired
- private TestService testService;
- @RequestMapping(value = "/master")
- public String test(String master){
- testService.t2(master);
- return "ssss";
- }
- @RequestMapping(value = "/test")
- public String test1(){
- return testService.t3();
- }
- }
|