IDEA+Spring Book入门项创建+第一章

IDEA+Spring Book入门项创建+第一章,第1张

1.先创建一个SpringBoot项目



2.Springboot测试,创建一个HelloController类用于转发链接

package com.example.demo;

import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@EnableAutoConfiguration
public class HelloController {
    @RequestMapping("/hello")
    private String index() {
        return "hello world";
    }
}


3.运行完成后输入http://localhost:8080/hello看页面效果,如果出现下面情况就是完成了。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/919764.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-16
下一篇 2022-05-16

发表评论

登录后才能评论

评论列表(0条)

保存