一、创建项目

1.File->new->project;

springboot怎么连接hive数据库 springboot连接数据库代码_springboot

2.选择“Spring Initializr”,点击next;(选择电脑中已安装的jdk配置)

springboot怎么连接hive数据库 springboot连接数据库代码_springboot_02


3.完善信息

springboot怎么连接hive数据库 springboot连接数据库代码_spring_03


4.Web下勾选Spring Web Start/Web/Spring Web);Template Englines勾选Thymeleaf;SQL勾选:MySQL Driver,JDBC API 和 MyBatis Framework三项;点击next;

springboot怎么连接hive数据库 springboot连接数据库代码_Web_04

二、与数据库连接(MYSQL)

①登陆SQLyog并点击连接

springboot怎么连接hive数据库 springboot连接数据库代码_idea_05


②创建数据库,例如rg18,并创建对应的表

springboot怎么连接hive数据库 springboot连接数据库代码_Web_06

③在IDEA中连接数据库(mysql):view->tools windows->data base

springboot怎么连接hive数据库 springboot连接数据库代码_springboot_07

④在右侧弹出的栏中,点+

springboot怎么连接hive数据库 springboot连接数据库代码_mysql_08


选择data source->mysql

springboot怎么连接hive数据库 springboot连接数据库代码_mysql_09


⑤填上对应的数据库名(例如,我创建的数据库为rg18,故此处database填的也是rg18),用户名与密码,并连接。

springboot怎么连接hive数据库 springboot连接数据库代码_Web_10

三、application.yml文件讲解

文件目录如下:

springboot怎么连接hive数据库 springboot连接数据库代码_Web_11

application.yml代码:

tip:"#"为详解注释

#配置端口号和数据库连接

server:
  #运行的端口号,进入网页时地址就是http://localhost:8080
  port: 8080

generalUsername: Erya

#连接数据库
mydb:
  username: root
  password: 123456
  url: mysql

#配置springmvc的视图
spring:
  mvc:
    view:
      prefix: /
      suffix: .jsp
  datasource: #g告诉springboot去哪里链接数据库,以及用什么样的方式链接数据库
    driver-class-name: com.mysql.jdbc.Driver
    url: jdbc:mysql://localhost:3306/rg18?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8
    username: root
    password: 123456
    
    #使用druid数据库连接池连接数据库
    type: com.alibaba.druid.pool.DruidDataSource

mybatis:
  #告诉mybatis,mapper文件的映射路径
  mapper-locations: classpath:mappers/*.xml
  type-aliases-package: com.cy.springboot29.entity
  configuration:
    map-underscore-to-camel-case: true

四、Add run configurations

运行springboot项目,相应地,需要添加对应的运行配置。

以下文件是项目的启动类,在运行配置中将会选定。

springboot怎么连接hive数据库 springboot连接数据库代码_Web_12


其内容会引用controller包中跳转页面的文件。①add configurations

springboot怎么连接hive数据库 springboot连接数据库代码_Web_13


②点+号,spring boot

springboot怎么连接hive数据库 springboot连接数据库代码_Web_14


③按图中步骤即可。

springboot怎么连接hive数据库 springboot连接数据库代码_spring_15

tip:如果项目中包含多个子项目,如:

springboot怎么连接hive数据库 springboot连接数据库代码_idea_16


可以分别创建两个springboot,选择运行。

springboot怎么连接hive数据库 springboot连接数据库代码_mysql_17

五、SpringBoot项目源码(功能含数据查询、数据添加与更新):


项目预览图:

springboot怎么连接hive数据库 springboot连接数据库代码_spring_18


springboot怎么连接hive数据库 springboot连接数据库代码_idea_19


springboot怎么连接hive数据库 springboot连接数据库代码_idea_20


springboot怎么连接hive数据库 springboot连接数据库代码_springboot_21