我正在使用Spring启动开发一个简单的Web应用程序, 请找到以下代码。
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.RequestMapping;
@RestController
public class HelloApplication {
@RequestMapping("/")
public String index() {
return "Greetings from Spring Boot!";
}
}
当我尝试运行时,我无法选择运行..在运行中...
请找到屏幕截图
答案 0 :(得分:0)
你的课应该是:
@Controller
@SpringBootApplication
public class SampleController {
public static void main(String[] args) {
SpringApplication.run(SampleController.class, args);
}
@RequestMapping
@ResponseBody
String home() {
return "hello world";
}
}