使用IntelliJ IDEA新建一个spring boot项目

好家伙,

 

使用IntelliJ IDEA新建一个spring boot项目

目的很简单,就是网页上出现一个"hello world"

别的暂时不管

 

首先关于工具IntelliJ IDEA

个人版新建账号免费使用30天

长久使用,可以TB,(懂得都懂)

 

1.新建项目

使用IntelliJ IDEA新建一个spring boot项目

 

 

使用IntelliJ IDEA新建一个spring boot项目

 

 

使用IntelliJ IDEA新建一个spring boot项目

 

 这里去到JDK的下载界面

使用IntelliJ IDEA新建一个spring boot项目

 

 

 

 使用IntelliJ IDEA新建一个spring boot项目

 

2.添加配置文件

进到项目中去

按照目录进行改名字

使用IntelliJ IDEA新建一个spring boot项目

 

目录顺序不要搞错了!!!

 

在DemoMainApplication中添加配置项

使用IntelliJ IDEA新建一个spring boot项目

 

 代码如下:

package com.demo;

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

/**
 * 说明这是个主程序
 */
@SpringBootApplication
public class DemoMainApplication {
    public static void main(String[] args) {
        // Spring应用启动起来
        SpringApplication.run(DemoMainApplication.class,args);
    }
}

 

 

同样,在DemoController文件中添加配置项

使用IntelliJ IDEA新建一个spring boot项目

 

 代码如下:

package com.demo.controller;
import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; /** * 说明这是一个控制器类 */ @Controller public class DemoController { /** * 浏览器访问hello方法,在页面显示Hello World * @return */ @ResponseBody @RequestMapping("/" ) public String hello(){ return "Hello World"; } }

 

ctrl+c再ctrl+v之后

可以准备跑程序了

 

3.运行

使用IntelliJ IDEA新建一个spring boot项目

 

 

 

使用IntelliJ IDEA新建一个spring boot项目

 

 跑起来

 

使用IntelliJ IDEA新建一个spring boot项目

 

 

 

这时候打开浏览器访问localhost:8080

使用IntelliJ IDEA新建一个spring boot项目

 

 

 

 

搞定!

 

上一篇:java – 杰克逊:映射嵌套对象


下一篇:DBA_Oracle PFile and SPFile文件的管理和使用(案例)(数据启动时引用参数Pfile/SPfile中设定)