untitled1ddd.zip
立即下载
资源介绍:
untitled1ddd.zip
package org.example;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@SpringBootApplication
@RestController()
public class Main {
public static void main(String[] args) {
SpringApplication.run(Main.class);
}
@RequestMapping("/res")
public String res() {
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
return "表单提交成功啦!!!";
}
}