使用idea创建spring boot的简单项目 hello word 超简单

spring boot 应用越来越广泛 因此学习spring boot十分有必要的了
这里记录一下自己用idea创建的第一个spring boot小项目
使用idea创建spring boot的简单项目 hello word 超简单_第1张图片
创建一个新的project 在idea中 一个project相当于eclipse中的workspace
而一个model相当于eclipse中的项目
点击Spring Initializr 然后 next
使用idea创建spring boot的简单项目 hello word 超简单_第2张图片
设置好自己想用的项目名 然后next
使用idea创建spring boot的简单项目 hello word 超简单_第3张图片
这里选web项目 next
使用idea创建spring boot的简单项目 hello word 超简单_第4张图片

finish使用idea创建spring boot的简单项目 hello word 超简单_第5张图片
然后耐心等待一会 因为项目得自己下载文件
右下角会有一个小提示窗口
这时选择右边
在这里插入图片描述

需要设置自动导包功能 因为idea是不和eclipse一样可以一键导包的 需要自己设置
具体设置 可观看鄙人另外的文章或者自行百度
创建好的目录如下所示
使用idea创建spring boot的简单项目 hello word 超简单_第6张图片
然后写一下
`

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@SpringBootApplication
public class Demo1Application {
 @RequestMapping("/hello")
public String test(){
    return "hello word";

}
    public static void main(String[] args) {

     SpringApplication.run(Demo1Application.class, args);
    }

}`

@requestMapping用法和spring mvc相同
@RestController 用法类似于@Controller
然后运行!
果不其然…出错了
错误如下在这里插入图片描述
错误很简单 就是因为pom文件中少了对slf4j的依赖引用,添加如下依赖就可:

    
        org.slf4j
        slf4j-log4j12
        1.7.2
    
    再次点击运行

使用idea创建spring boot的简单项目 hello word 超简单_第7张图片
可以看到Spring的logo 项目到这里已经成功了 但是可以看到运行结果里面还有一些警告错误 这是由于日志文件jar包冲突导致我这里忽略 当然你也可以选择消灭这些错误 exclussion你不想要的jar 具体方法可自行百度
然后打开浏览器 输入http://localhost:8080/hello

hello word出现 项目成功.

你可能感兴趣的:(自学)