1 回答
TA贡献1884条经验 获得超4个赞
我想我有一个答案:
我为我的应用程序创建了一个控制器,并按如下方式更新了我的代码:
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@Configuration
@EnableAutoConfiguration
@ComponentScan(basePackages = {"Name_controller_path"})
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
然后我的控制器将如下所示:
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class Appcontroller {
@RequestMapping(value = "/home", method = RequestMethod.GET)
String home() {
return "home";
}
}
然后使用此路径查看您的执行情况:http://localhost:8080/home。
添加回答
举报