赞
踩
IDEA版本2021,Sql Server版本为2012,Spring Boot版本为2.5.6
1、在pom.xml文件中导入相关的依赖,如果导入依赖报错:Cannot resolve com.microsoft.sqlserver:sqljdbc4:4.0 ,表明该依赖无法通过IDEA自带的Maven导入,就需要安装Maven,设置本地库进行导入。
<!-- Mybatis整合Spring Boot的依赖项 --> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.2.2</version> </dependency>
<!--Sql Server的依赖--> <dependency> <groupId>com.microsoft.sqlserver</groupId> <artifactId>sqljdbc4</artifactId> <version>4.0</version> </dependency>
2、在配置文件application.yml做如下配置,用户名和密码输入安装SqlServer时自定义的密码。
# Spring相关配置 spring: # 数据源相关配置 datasource: driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver # 连接数据库的URL url: jdbc:sqlserver://localhost:1433;database=hospital;encrypt=false # 登录数据库的用户名 username: sa # 登录数据库的密码 password: root
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。