美文网首页
springboot入门(quick start)

springboot入门(quick start)

作者: 激扬文字 | 来源:发表于2019-05-03 19:02 被阅读0次

    手动创建一个hello world,步骤如下:

    1、创建maven项目

    2、配置pom.xml

    <parent>

        <groupId>org.springframework.boot</groupId>

        <artifactId>spring-boot-starter-parent</artifactId>

        <version>2.0.1.RELEASE</version>

    </parent>

    <dependencies>

        <dependency>

            <groupId>org.springframework.boot</groupId>

            <artifactId>spring-boot-starter-web</artifactId>

        </dependency>

    </dependencies>

    3、hello world,使用官方包名命名方式。

    @Controller

    @EnableAutoConfiguration

    public class SampleController {

    @RequestMapping("/")

    @ResponseBody

    String home() {

    return "Hello World!";

    }

    public static void main(String[] args) throws Exception {

    SpringApplication.run(SampleController.class, args);

    }

    }

    4、启动,右键->run as ->java application

    5、访问页面

    访问端口为8080

    6、参考资料

    spring官方文档地址:

    https://spring.io/projects/spring-framework

    谷歌翻译地址:

    https://translate.google.cn/

    maven下载地址:

    http://maven.apache.org/download.cgi

    springbootGithub地址:

    https://github.com/spring-projects/spring-boot

    官方文档地址:

    https://docs.spring.io/spring-boot/docs/2.1.0.BUILD-SNAPSHOT/reference/htmlsingle/#using-boot-using-the-default-package

    相关文章

      网友评论

          本文标题:springboot入门(quick start)

          本文链接:https://www.haomeiwen.com/subject/rluznqtx.html