IDEA下的第一个springBoot

  1.第一步打开File->New->Project,SDK根据自己的需要选择,我这边选的是java7

IDEA下的第一个springBoot

  2.Next之后 设置group 和artifact,根据自己的需要进行修改。

IDEA下的第一个springBoot

  3.导包,这里导入一个Web包就可以了。

    IDEA下的第一个springBoot

  

  4,一直下一步,生成项目,在src下找到xxxApplication.java,进行修改后如下.

@SpringBootApplication
@RestController
public class SpringBootDemoApplication { public static void main(String[] args) {
SpringApplication.run(SpringBootDemoApplication.class, args);
} @RequestMapping("/helloworld")
public String hello(){
System.out.print("helloworld");
return "hello";
}

  IDEA下的第一个springBoot

  5,Run 运行application应用,用浏览器打开 localhost:8080/helloworld ,/helloworld  对应上面的RequestMapping("/helloworld"),第一个springBoot程序完成。

    IDEA下的第一个springBoot

上一篇:hdu 4747 Mex


下一篇:Construction of Primitives in Open Cascade