使用idea创建spring boot

1. 点击 File —— New —— Project 。

使用idea创建spring boot_第1张图片

2.  选择Maven  点击 Next ,GroupId 和 ArtifactId 自行填写。

使用idea创建spring boot_第2张图片

3. Project name 自行填写 

使用idea创建spring boot_第3张图片

4. 在pom 中加入配置。



    4.0.0

    cn.tx.springboot
    tx_demo_01
    1.0-SNAPSHOT
    jar

    
        org.springframework.boot
        spring-boot-starter-parent
        1.5.9.RELEASE
    

    
        
            org.springframework.boot
            spring-boot-starter-web
        
    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    

5. 新建包,类,Main 方法。

使用idea创建spring boot_第4张图片

HelloWordSpringBootMain 类 :

package com.springboot;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class HelloWordSpringBootMain {
    public static void main(String[] args) {
        SpringApplication.run(HelloWordSpringBootMain.class, args);
    }
}
TestController 类:

package com.springboot;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class TestController {

    @RequestMapping(value = "/HelloWord")
    @ResponseBody
    public String HelloWord(){
        return  "HelloWord";
    }
}

6. 运行 HelloWordSpringBootMain。

使用idea创建spring boot_第5张图片

使用idea创建spring boot_第6张图片

7. 生成 jar 包 。

使用idea创建spring boot_第7张图片

8. 停止idea 中的项目,打开jar包所在的文件夹 ,打开cmd, 使用命令 java -jar   进行运行。

使用idea创建spring boot_第8张图片

9. 在浏览器中输入 localhsot:8080/HelloWord 可以进行访问 创建完成。

你可能感兴趣的:(java,springboot)