springboot
Posted antlord
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot相关的知识,希望对你有一定的参考价值。
springboot入门学习
==================
一、springboot简介:
二、创建springboot项目,习惯使用IntelliJ IDEA工具,所以这里使用idea创建springboot
打开IntelliJ IDEA,点击【File】=>【New】 =>【Project】
弹出框,点击maven,Project SDK 选择版本1.7以上的JDK,点击next
设置项目基本信息,GroupId一般填写公司名称,ArtifactId填写项目名称,点击next
项目建好之后,继承springboot的依赖包,所有springboot项目都要继承这个依赖
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.2.RELEASE</version> <relativePath /> <!-- lookup parent from repository --> </parent>
以上是关于springboot的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot中表单提交报错“Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported“(代码片段
Spring boot:thymeleaf 没有正确渲染片段