码迷,mamicode.com
首页 >  
搜索关键字:datasource    ( 1515个结果
Spring Boot 2.1.7 启动项目失败,报错: "Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured."
一开始按照网上的很多解决办法是: 启动类头部声明@SpringBootApplication(exclude= {DataSourceAutoConfiguration.class}),但是这样会排除掉我自己的数据库配置, 检查了很多地方都没发现问题在哪里,最后自己猜想不论怎么修改applicati ...
分类:编程语言   时间:2020-02-22 09:39:09    阅读次数:114
Springboot启动报错:Failed to determine a suitable driver class
Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to dete ...
分类:编程语言   时间:2020-02-21 12:36:39    阅读次数:71
datasource 如何指定postgresql 连接的schema
##9.4开始通过关键字currentSchema指定jdbc:postgresql://localhost:5432/mypgsql?currentSchema=myschema ##旧版本通过searchpath指定jdbc:postgresql://localhost:5432/mypgsql ...
分类:数据库   时间:2020-02-20 20:33:44    阅读次数:105
JDBC 常用类/接口详解(MySQL为例)
DriverManager类 java.sql.DriverManager 是用于管理一组JDBC驱动程序的基本服务。 注意: JDBC 2.0 API中新增的DataSource接口提供了另一种连接到数据源的方法。 使用DataSource对象是连接到数据源的首选方法。 DriverManager ...
分类:数据库   时间:2020-02-18 09:21:52    阅读次数:84
Mysql----JDBC 连接池 DBCP C3P0
1.数据库连接池: 连接池容量 最大连接数 最小连接数 排队机制 超时 1.实现DataSource 接口 2.DBCP //1.配置 Properties文件,2.创建连接池工厂方法。3.操作数据库一样。 DataSource datesourc= BasicDataSourceFactory.c ...
分类:数据库   时间:2020-02-14 20:40:20    阅读次数:81
记录—JPA生成数据库表
环境 springBoot+JPA+MySQL application-dev.yml 注意:配置中的blog数据库需要先创建,否则启动springBoot会报错 1 spring: 2 #数据库连接配置 3 datasource: 4 driver-class-name: com.mysql.jd ...
分类:数据库   时间:2020-02-09 11:59:11    阅读次数:91
JdbcTemplate常用方法
JdbcTemplate简介 JdbcTemplate是Spring JDBC的核心类,借助该类提供的方法可以很方便的实现数据的增删改查。 Spring对数据库的操作在jdbc上面做了深层次的封装,使用spring的注入功能,可以把DataSource注册到JdbcTemplate之中。 JdbcT ...
分类:数据库   时间:2020-02-07 01:27:26    阅读次数:96
Mybatis基础(二)
Mybatis连接池 Mybatis连接池提供了三种配置方式,配置的位置在 的`dataSource`标签中,其type属性就是配置连接池的种类。type的可取值 1.POOLED: 利用“池”的概念将JDBC连接对象组织起来,避免了创建新的连接实例时所需的时间。这样使得应用的 响应速度更加快。 2 ...
分类:其他好文   时间:2020-02-06 22:43:03    阅读次数:64
SpringBoot 项目不加载 application.properties 配置文件
起因:新安装的idea第一次运行springboot项目报url错误(Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.) ...
分类:移动开发   时间:2020-02-04 14:14:29    阅读次数:274
Hibernate/JPA 自动创建数据库(MySQL)
平时使用Hibernate/JPA映射MySQL时,经常使用到自动创建数据表操作,自动创建MySQL数据库比较少见。 实际上也可以同时创建数据库,修改一下连接配置即可。 常见的配置如下(以Spring Boot中配置方式为例): spring.datasource.url=jdbc:mysql:// ...
分类:数据库   时间:2020-01-31 18:42:19    阅读次数:116
1515条   上一页 1 ... 13 14 15 16 17 ... 152 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!