创建spring boot 项目
Posted 第二人生Bonnie
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建spring boot 项目相关的知识,希望对你有一定的参考价值。
1、新建Spring Starter Project(需要连接外网)
2、选择web
3、点击完成,生成maven项目
pom文件默认有一些依赖,但是有一个地方报错,<parent>节点报错,去本地仓库查询这个依赖时,显示的是.lastUpdated,于是手工拷贝了下其他项目仓库的这个依赖,就好了
4、项目目录如下所示
5、添加controller类
package com.htkeystone.dcg.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; @Controller public class DemoController { @RequestMapping("/hello") String home() { return "hello wss"; } }
6、右键DemoApplication.java---Run As--Java Application,报错
把@Controller改为@RestController,好了
以上是关于创建spring boot 项目的主要内容,如果未能解决你的问题,请参考以下文章
使用IntelliJ IDEA创建Spring Boot项目
解决spring-boot启动中碰到的问题:Cannot determine embedded database driver class for database type NONE(转)(代码片段