美文网首页
Eclipse上Spring-Boot搭建与简单实例

Eclipse上Spring-Boot搭建与简单实例

作者: 晏子小七 | 来源:发表于2018-02-27 17:05 被阅读1555次

    一、eclipse在线下载springboot插件

    1、help->eclipse marketplace->popular-选择spring tool suite(STS)进行下载

    image

    2、下载好之后,重启eclipse,测试springboot插件是否已下载好,步骤:File->new->other

    image

    3、如果有spring这个文件夹,说明springboot插件已经下载好,可以创建springboot项目了

    二、eclipse创建springboot项目

    1、File->new->other->spring->Spring Starter Project->next

    image

    2、Name:项目名称,Type:类型,Java Version:JDK版本,Packaging:打包方式,Language:语言 可以根据自己的需求修改

    image

    3、next->Web栏目中Web打上勾(注意,不同版本eclipse显示的页面不同)->Finish

    image

    最后,一个简单的springboot项目已经创建好了。


    搭建第一个Spring-boot项目
    1.编制Application.java存于myFirstProject\src\main\java\com\example\demo下
    package com.example.demo;

    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration;

    @SpringBootApplication(exclude = MongoAutoConfiguration.class)
    public class Demo1Application {

    public static void main(String[] args) {
        SpringApplication.run(Demo1Application.class, args);
    }
    

    }

    2、编制Example.java,存于myFirstProject\src\main\java\com\example\demo下

    package com.example.demo;

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

    @RestController
    @EnableAutoConfiguration
    public class Example {

    @RequestMapping("/")//http://localhost:8080
    String home(){
        return "Hello World!!!";
    }
    @RequestMapping("/hello/{myname}")//http://localhost:8080/hello/zhangzuorui
    String index(@PathVariable String myname){
        return "Hello"+myname+"!!!";
    }
    

    }

    3.运行spring-boot
    1、在eclipse的工程myFirstProject上右击鼠标,选择Run as-->Java Application,如图3

    image

    2、在select Java Aplication中选择“Application -com.example.myFirstProject”,如图4

    image

    图4

    3、再次点击“OK”按钮,在Eclipse的Console中开始打印如图5

    image

    图5

    4、打开浏览器,输入http://localhost:8080,显示如图6

    image

    5、在浏览器中,输入http://localhost:8080/hello/SpringBoot

    image

    搭建完成!

    相关文章

      网友评论

          本文标题:Eclipse上Spring-Boot搭建与简单实例

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