服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - 使用IDEA搭建一个简单的SpringBoot项目超详细过程

使用IDEA搭建一个简单的SpringBoot项目超详细过程

2021-08-05 10:52小白逆流而上 Java教程

这篇文章主要介绍了使用IDEA搭建一个简单的SpringBoot项目超详细过程,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

一、创建项目

1.File->new->project;

使用IDEA搭建一个简单的SpringBoot项目超详细过程

2.选择“Spring Initializr”,点击next;(jdk1.8默认即可)

使用IDEA搭建一个简单的SpringBoot项目超详细过程

3.完善项目信息,组名可不做修改,项目名可做修改;最终建的项目名为:test,src->main->java下包名会是:com->example->test;点击next;

使用IDEA搭建一个简单的SpringBoot项目超详细过程

4.Web下勾选Spring Web Start,(网上创建springboot项目多是勾选Web选项,而较高版本的Springboot没有此选项,勾选Spring Web Start即可,2.1.8版本是Spring Web);Template Englines勾选Thymeleaf;SQL勾选:MySQL Driver,JDBC API 和 MyBatis Framework三项;点击next;

使用IDEA搭建一个简单的SpringBoot项目超详细过程

5.选择项目路径,点击finish;打开新的窗口;

使用IDEA搭建一个简单的SpringBoot项目超详细过程

使用IDEA搭建一个简单的SpringBoot项目超详细过程

6.刚创建好的项目目录结构

使用IDEA搭建一个简单的SpringBoot项目超详细过程

7.点击右侧的Maven,点击设置(扳手图标)进行项目Maven仓库的配置;

使用IDEA搭建一个简单的SpringBoot项目超详细过程

8.(1)选择本地Maven路径;(2)勾选配置文件后边的选项,然后修改为本地Maven的配置文件,它会根据配置文件直接找到本地仓库位置;

使用IDEA搭建一个简单的SpringBoot项目超详细过程

9.配置完后,如果没有自动导包,可以点击左上角重新导包按钮,或者呢个下载按钮,选择下载所有源文件和文档

使用IDEA搭建一个简单的SpringBoot项目超详细过程

10.在templates文件下新建index.html页面,作为启动的初始页面;

使用IDEA搭建一个简单的SpringBoot项目超详细过程

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>hello</title>
  6. </head>
  7. <body>
  8. 你好!初学者,我是SpringBoot的简单启动页面!
  9. </body>
  10. </html>

11.在com.example.test下新建controller文件夹,在controller文件夹下建一个简单的helloController类;(Controller类要添加@Controller注解,项目启动时,SpringBoot会自动扫描加载Controller)

使用IDEA搭建一个简单的SpringBoot项目超详细过程使用IDEA搭建一个简单的SpringBoot项目超详细过程

  1. package com.example.test.controller;
  2.  
  3. import org.springframework.stereotype.Controller;
  4. import org.springframework.web.bind.annotation.RequestMapping;
  5.  
  6. @Controller
  7. public class HelloController {
  8.  
  9. @RequestMapping("/index")
  10. public String sayHello(){
  11. return "index";
  12. }
  13. }

12.在resources文件夹下application中先配置DataSource基本信息,application文件有两种文件格式,一种是以.properties为后缀,一种是以.yml为后缀的,两种配置方式略有差别,详情可参考这个网址:https://blog.csdn.net/qq_29648651/article/details/78503853;在这我是用.yml后缀的文件格式。右键application文件选择Refact,选择Rename,将后缀改为yml;

使用IDEA搭建一个简单的SpringBoot项目超详细过程

  1. spring:
  2. datasource:
  3. name: test #数据库名
  4. url: jdbc:mysql://localhost:3306/test #url
  5. username: root #用户名
  6. password: 123456 #密码
  7. driver-class-name: com.mysql.jdbc.Driver #数据库链接驱动

13.运行项目启动类TestApplication.java

使用IDEA搭建一个简单的SpringBoot项目超详细过程

可以发现上面有一个WARN警告,那是因为还没有配置编写MyBatis的相关文件,下面会进行详解;

2019-08-02 09:14:27.473  WARN 9120 --- [           main] o.m.s.mapper.ClassPathMapperScanner      : No MyBatis mapper was found in '[com.example.test]' package. Please check your configuration.

14.在浏览器中输入localhost:8080,回车显示初始的index界面;到这项目的初步搭建已经完成,下面可以下一些简单的业务逻辑,比如从数据库获取信息,登录之类的简单功能;

使用IDEA搭建一个简单的SpringBoot项目超详细过程

15.在进行下一步编写时,我们先来链接一下数据库;点击右侧的Database,点“加号”,新建数据库链接;

使用IDEA搭建一个简单的SpringBoot项目超详细过程使用IDEA搭建一个简单的SpringBoot项目超详细过程

16.填写数据库相关信息,点击Test Connection;

使用IDEA搭建一个简单的SpringBoot项目超详细过程

17.如果链接失败可能是驱动的问题,点击左上角的小扳手,进入数据库设置界面

使用IDEA搭建一个简单的SpringBoot项目超详细过程

18.连接成功后,显示数据库信息,user表的基本信息也显示了,下面就照这个来了;

使用IDEA搭建一个简单的SpringBoot项目超详细过程

19.SpringBoot项目大概分为四层:

(1)DAO层:包括XxxMapper.java(数据库访问接口类),XxxMapper.xml(数据库链接实现);(这个命名,有人喜欢用Dao命名,有人喜欢用Mapper,看个人习惯了吧)

(2)Bean层:也叫model层,模型层,entity层,实体层,就是数据库表的映射实体类,存放POJO对象;

(3)Service层:也叫服务层,业务层,包括XxxService.java(业务接口类),XxxServiceImpl.java(业务实现类);(可以在service文件夹下新建impl文件放业务实现类,也可以把业务实现类单独放一个文件夹下,更清晰)

(4)Web层:就是Controller层,实现与web前端的交互。

依照上面四层,创建目录结构如下:

使用IDEA搭建一个简单的SpringBoot项目超详细过程

20.代码展示:

(1)在application配置文件中添加MyBatis配置:

  1. spring:
  2. datasource:
  3. name: test #数据库名
  4. url: jdbc:mysql://localhost:3306/test #url
  5. username: root #用户名
  6. password: 123456 #密码
  7. driver-class-name: com.mysql.jdbc.Driver #数据库链接驱动
  8.  
  9. mybatis:
  10. mapper-locations: classpath:mapper/*.xml #配置映射文件
  11. type-aliases-package: com.example.test.bean #配置实体类

(2)pom.xml文件配置信息(备注:这个文件以前没有,2019/12/9日粉丝发现的,这个里面也添加了单元测试所需的配置,记得要重新导一下Maven包哦)

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.1.6.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.example</groupId>
  12. <artifactId>test</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>test</name>
  15. <description>Demo project for Spring Boot</description>
  16.  
  17. <properties>
  18. <java.version>1.8</java.version>
  19. </properties>
  20.  
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-jdbc</artifactId>
  25. </dependency>
  26. <!--thymeleaf模板引擎配置-->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  30. </dependency>
  31. <!--Web依赖-->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. </dependency>
  36. <!--MyBatis配置-->
  37. <dependency>
  38. <groupId>org.mybatis.spring.boot</groupId>
  39. <artifactId>mybatis-spring-boot-starter</artifactId>
  40. <version>2.1.0</version>
  41. </dependency>
  42. <!--MySQL数据库配置-->
  43. <dependency>
  44. <groupId>mysql</groupId>
  45. <artifactId>mysql-connector-java</artifactId>
  46. <version>5.1.41</version>
  47. <scope>runtime</scope>
  48. </dependency>
  49. <!--单元测试配置-->
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-test</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. </dependencies>
  56.  
  57. <build>
  58. <plugins>
  59. <plugin>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-maven-plugin</artifactId>
  62. </plugin>
  63. </plugins>
  64. </build>
  65.  
  66. </project>

(3)Bean实体类,依据数据库表,生成set和get方法;

  1. package com.example.test.bean;
  2.  
  3. public class UserBean {
  4. private int id;
  5. private String name;
  6. private String password;
  7.  
  8. public int getId() {
  9. return id;
  10. }
  11.  
  12. public void setId(int id) {
  13. this.id = id;
  14. }
  15.  
  16. public String getName() {
  17. return name;
  18. }
  19.  
  20. public void setName(String name) {
  21. this.name = name;
  22. }
  23.  
  24. public String getPassword() {
  25. return password;
  26. }
  27.  
  28. public void setPassword(String password) {
  29. this.password = password;
  30. }
  31. }

(4)DAO层访问数据库接口文件:

  1. package com.example.test.mapper;
  2.  
  3. import com.example.test.bean.UserBean;
  4.  
  5. public interface UserMapper {
  6.  
  7. UserBean getInfo(String name,String password);
  8.  
  9. }

(5)DAO层访问数据库实现文件(需在resource包下创建mapper文件夹,然后再创建一个UserMapper.xml.在application配置文件中mybatis:mapper-locations:对应的就是该文件地址),注意<mapper>标签的namespace属性要填写 访问数据库接口类文件路径:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3. <mapper namespace="com.example.test.mapper.UserMapper">
  4.  
  5. <select id="getInfo" parameterType="String" resultType="com.example.test.bean.UserBean">
  6. SELECT * FROM user WHERE name = #{name} AND password = #{password}
  7. </select>
  8.  
  9. </mapper>

(6)Service层业务接口类编写:

  1. package com.example.test.service;
  2.  
  3. import com.example.test.bean.UserBean;
  4.  
  5. public interface UserService {
  6.  
  7. UserBean loginIn(String name,String password);
  8.  
  9. }

(7)Service层业务实现类编写,注意要注解@Service,注入DAO:

  1. package com.example.test.serviceImpl;
  2.  
  3. import com.example.test.bean.UserBean;
  4. import com.example.test.mapper.UserMapper;
  5. import com.example.test.service.UserService;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.stereotype.Service;
  8.  
  9. @Service
  10. public class UserServiceImpl implements UserService {
  11.  
  12. //将DAO注入Service层
  13. @Autowired
  14. private UserMapper userMapper;
  15.  
  16. @Override
  17. public UserBean loginIn(String name, String password) {
  18. return userMapper.getInfo(name,password);
  19. }
  20. }

(8)项目启动类要添加注解@MapperScan项目启动时扫描mapper接口,否则会报错找不到mapper文件:

  1. package com.example.test;
  2.  
  3. import org.mybatis.spring.annotation.MapperScan;
  4. import org.springframework.boot.SpringApplication;
  5. import org.springframework.boot.autoconfigure.SpringBootApplication;
  6.  
  7. @SpringBootApplication
  8. @MapperScan("com.example.test.mapper")
  9. public class TestApplication {
  10.  
  11. public static void main(String[] args) {
  12. SpringApplication.run(TestApplication.class, args);
  13. }
  14.  
  15. }

(9)编写测试类,看是否能成功 访问数据库,获取数据库信息:

  1. package com.example.test;
  2.  
  3. import com.example.test.bean.UserBean;
  4. import com.example.test.service.UserService;
  5. import org.junit.Test;
  6. import org.junit.runner.RunWith;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. import org.springframework.test.context.junit4.SpringRunner;
  10.  
  11. @RunWith(SpringRunner.class)
  12. @SpringBootTest
  13. public class TestApplicationTests {
  14.  
  15. @Autowired
  16. UserService userService;
  17.  
  18. @Test
  19. public void contextLoads() {
  20. UserBean userBean = userService.loginIn("a","a");
  21. System.out.println("该用户ID为:");
  22. System.out.println(userBean.getId());
  23. }
  24.  
  25. }

(10) controller层,注意添加@controller注解,注入Service服务:

  1. package com.example.test.controller;
  2.  
  3. import com.example.test.bean.UserBean;
  4. import com.example.test.service.UserService;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.stereotype.Controller;
  7. import org.springframework.web.bind.annotation.RequestMapping;
  8. import org.springframework.web.bind.annotation.RequestMethod;
  9.  
  10. @Controller
  11. public class LoginController {
  12.  
  13. //将Service注入Web层
  14. @Autowired
  15. UserService userService;
  16.  
  17. @RequestMapping("/login")
  18. public String show(){
  19. return "login";
  20. }
  21.  
  22. @RequestMapping(value = "/loginIn",method = RequestMethod.POST)
  23. public String login(String name,String password){
  24. UserBean userBean = userService.loginIn(name,password);
  25. if(userBean!=null){
  26. return "success";
  27. }else {
  28. return "error";
  29. }
  30. }
  31.  
  32. }

(11)html文件:

login.html

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>login</title>
  6. </head>
  7. <body>
  8. <form role="form" action = "/loginIn" method="post">
  9. 账号:<input type="text" id="name" name = "name"> <br>
  10. 密码:<input type="password" id = "password" name = "password"> <br>
  11. <input type="submit" id = "login" value = "login">
  12. </form>
  13.  
  14. </body>
  15. </html>

success.html

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>success</title>
  6. </head>
  7. <body>
  8. <h1>登录成功!</h1>
  9. </body>
  10. </html>

error.html

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>error</title>
  6. </head>
  7. <body>
  8. <h1>登录失败!</h1>
  9. </body>
  10. </html>

21.先运行测试类,看是否成功获取数据库信息:

使用IDEA搭建一个简单的SpringBoot项目超详细过程

22.同时发现一条警告信息,是数据库连接的jar包问题:

2019-08-02 11:25:04.150  WARN 16868 --- [           main] com.zaxxer.hikari.util.DriverDataSource  : Registered driver with driverClassName=com.mysql.jdbc.Driver was not found, trying direct instantiation.

打开pom.xml文件,发现配置文件中未指定数据库连接的jar包的版本号,用version标签引入

<version>5.1.41</version>

使用IDEA搭建一个简单的SpringBoot项目超详细过程使用IDEA搭建一个简单的SpringBoot项目超详细过程

重新运行测试类,WARN警告消除

使用IDEA搭建一个简单的SpringBoot项目超详细过程

23.运行TestApplication.java文件,启动项目,无任何WARN警告信息,进入浏览器输入localhost:8080/login

使用IDEA搭建一个简单的SpringBoot项目超详细过程

使用IDEA搭建一个简单的SpringBoot项目超详细过程使用IDEA搭建一个简单的SpringBoot项目超详细过程

项目到这里就算完美结束了。

项目源码放在GitHub上,可以下载参考:https://github.com/redesperado/SpringBoot.git

有一个基于本项目添加增删改查功能的项目,仅供参考:https://github.com/redesperado/test1.git

附一个微服务项目搭建过程,有想学的可以参考一下

IDEA基于springboot采用Dubbo+zookeeper+Redis搭建微服务项目-详细教程:https://blog.csdn.net/baidu_39298625/article/details/108330298

大家如果在创建过程 中遇到什么问题,可以在下边提供的链接中看看,这些是我在创建项目过程遇到的问题,希望可以帮到大家:

1.启动报错:Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.

https://blog.csdn.net/baidu_39298625/article/details/98261102

2.mapper.xml文件数据库字段报红

https://blog.csdn.net/baidu_39298625/article/details/98265845

3.项目正常启动,访问默认index页面时404

https://blog.csdn.net/baidu_39298625/article/details/98501840

4. 链接MySQL数据库报错:java.sql.SQLException: The server time zone value '�й���׼ʱ��' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.

https://blog.csdn.net/baidu_39298625/article/details/100915264

5.中文用户名登录失败,无报错信息

https://blog.csdn.net/baidu_39298625/article/details/103494461

到此这篇关于使用IDEA搭建一个简单的SpringBoot项目超详细过程的文章就介绍到这了,更多相关idea搭建springboot项目内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/baidu_39298625/article/details/98102453

延伸 · 阅读

精彩推荐