spring中配置MySql数据源,怎样配置数据库信息

如题所述

jdbc.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="<a
 href="http://www.springframework.org/schema/beans"" 
target="_blank">http://www.springframework.org/schema/beans"</a>
      xmlns:xsi="<a
 href="http://www.w3.org/2001/XMLSchema-instance"" 
target="_blank">http://www.w3.org/2001/XMLSchema-instance"</a>
      xmlns:context="<a
 href="http://www.springframework.org/schema/context"" 
target="_blank">http://www.springframework.org/schema/context"</a>
      xmlns:aop="<a
 href="http://www.springframework.org/schema/aop"" 
target="_blank">http://www.springframework.org/schema/aop"</a>
      xmlns:tx="<a
 href="http://www.springframework.org/schema/tx"" 
target="_blank">http://www.springframework.org/schema/tx"</a>
      xmlns:jpa="<a
 href="http://www.springframework.org/schema/data/jpa"" 
target="_blank">http://www.springframework.org/schema/data/jpa"</a>
      xsi:schemaLocation="<a
 href="http://www.springframework.org/schema/beans" 
target="_blank">http://www.springframework.org/schema/beans</a>
   <a
 href="http://www.springframework.org/schema/beans/spring-beans-4.0.xsd"
 
target="_blank">http://www.springframework.org/schema/beans/spring-beans-4.0.xsd</a>
    
   <a
 href="http://www.springframework.org/schema/context " 
target="_blank">http://www.springframework.org/schema/context </a>
   <a
 href="http://www.springframework.org/schema/context/spring-context.xsd"
 
target="_blank">http://www.springframework.org/schema/context/spring-context.xsd</a>
   <a href="http://www.springframework.org/schema/tx " target="_blank">http://www.springframework.org/schema/tx </a>
   <a
 href="http://www.springframework.org/schema/tx/spring-tx-4.0.xsd" 
target="_blank">http://www.springframework.org/schema/tx/spring-tx-4.0.xsd</a>
   <a
 href="http://www.springframework.org/schema/aop " 
target="_blank">http://www.springframework.org/schema/aop </a>
   <a
 href="http://www.springframework.org/schema/aop/spring-aop-4.0.xsd" 
target="_blank">http://www.springframework.org/schema/aop/spring-aop-4.0.xsd</a>
   <a
 href="http://www.springframework.org/schema/data/jpa " 
target="_blank">http://www.springframework.org/schema/data/jpa </a>
   <a
 
href="http://www.springframework.org/schema/data/jpa/spring-jpa-4.0.xsd""
 
target="_blank">http://www.springframework.org/schema/data/jpa/spring-jpa-4.0.xsd"</a>
      default-autowire="byName">
 
 
   <!-- æ•°æ®æºé…ç½®, ä½¿ç”¨ alibaba.druid æ•°æ®åº“连接池 -->
   <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource"
        init-method="init" destroy-method="close" autowire="byName">
      <!-- æ•°æ®æºé©±åŠ¨ç±»å¯ä¸å†™ï¼ŒDruid默认会自动根据URL识别DriverClass -->
      <!-- åŸºæœ¬å±žæ€§ url、user、password -->
      <property name="driverClassName" value="${jdbc.driverClass}"/>
      <property name="url" value="${jdbc.url}"/>
      <property name="username" value="${jdbc.username}"/>
      <property name="password" value="${jdbc.password}"/>
 
      <!--<property name="driverClassName" value="com.mysql.jdbc.Driver" />-->
      <!--<property name="url" value="jdbc:mysql://127.0.0.1:3306/sprimy?useUnicode=true&amp;characterEncoding=utf8"></property>-->
      <!--<property name="username" value="root" />-->
      <!--<property name="password" value="123456" />-->
 
 
      <!-- é…ç½®åˆå§‹åŒ–大小、最小、最大 -->
      <property name="initialSize" value="3"/>
      <property name="minIdle" value="3"/>
      <property name="maxActive" value="20"/>
 
      <!-- é…ç½®èŽ·å–连接等待超时的时间 -->
      <property name="maxWait" value="60000"/>
 
      <!-- é…ç½®é—´éš”多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 -->
      <property name="timeBetweenEvictionRunsMillis" value="60000"/>
 
      <!-- é…ç½®ä¸€ä¸ªè¿žæŽ¥åœ¨æ± ä¸­æœ€å°ç”Ÿå­˜çš„时间,单位是毫秒 -->
      <property name="minEvictableIdleTimeMillis" value="300000"/>
 
      <property name="validationQuery" value="SELECT 'x'"/>
      <property name="testWhileIdle" value="true"/>
      <property name="testOnBorrow" value="false"/>
      <property name="testOnReturn" value="false"/>
 
      <!-- æ‰“å¼€PSCache,并且指定每个连接上PSCache的大小(Oracle使用) <property name="poolPreparedStatements" 
         value="true" /> <property name="maxPoolPreparedStatementPerConnectionSize" 
         value="20" /> -->
      <!-- é…ç½®ç›‘控统计拦截的filters -->
      <property name="filters" value="stat"/>
   </bean>
 
 
   <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
      <constructor-arg index="0" ref="dataSource" />
   </bean>
   <!-- å®šä¹‰äº‹åŠ¡ç®¡ç†å™¨  -->
   <bean id="transactionManager"
        class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
      <property name="dataSource" ref="dataSource" />
   </bean>
 
   <aop:config>
      <aop:pointcut id="businessService"
                 expression="execution(* cn.cq.shenyun.service.*.*(..))"/>
      <aop:advisor advice-ref="txAdvice" pointcut-ref="businessService"/>
   </aop:config>
 
   <tx:advice id="txAdvice" transaction-manager="transactionManager">
      <!-- the transactional semantics... -->
      <tx:attributes>
         <!-- all methods starting with '*' are read-only -->
         <!--<tx:method name="*" propagation="SUPPORTS" read-only="true"/>-->
         <!-- other methods use the default transaction settings (see below) -->
         <!--<tx:method name="add*" propagation="REQUIRED"/>-->
         <!--<tx:method name="save*" propagation="REQUIRED"/>-->
         <!--<tx:method name="update*" propagation="REQUIRED"/>-->
         <!--<tx:method name="delete*" propagation="REQUIRED"/>-->
         <tx:method name="create*" propagation="REQUIRED"/>
      </tx:attributes>
   </tx:advice>
   <!--   äº‹åŠ¡æ”¯æŒæ³¨è§£  -->
   <tx:annotation-driven transaction-manager="transactionManager"/>
   <!--编程式事务使用-->
   <bean id="txDefinition" class="org.springframework.transaction.support.DefaultTransactionDefinition"></bean>
 
</beans>

   

jdbc.properties

#DataSource settings
jdbc.driverClass=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://127.0.0.1:3306/sprimy?useUnicode=true&characterEncoding=utf8
jdbc.username=root
jdbc.password=123456
温馨提示:内容为网友见解,仅供参考
第1个回答  2016-02-21
可能还是你的用户和密码的问题吧。在试一试我的办法。 先关闭mysql # service mysqld stop 把权限屏蔽 # mysqld_safe --skip-grant-table 会出现这样的字样: Starting demo from ..... 新开起一个终端输入 # mysql -u root mysql mysql> UPDATE user SET Password=PASSWORD('newpassword') where USER='root'; mysql> FLUSH PRIVILEGES;//记得要这句话,否则如果关闭先前的终端,又会出现原来的错误 mysql> \q 这样看看。

spring配置mybatis(spring配置mybatis数据源)
三、修改pom.xml,引入mysql的驱动,MyBatis,C3p0连接池 四、创建MyBatis配置文件 spring-mybatis怎么配置数据访问层的控制,applicationContext-dao.xml的配置:配置加载数据连接资源文件的配置,把数据库连接数据抽取到一个properties资源文件中方便管理。配置为:!--加载数据库连接的资源文件-- context:prop...

SpringBoot整合多种类型数据源(mysql+pg)
spring.datasource.pg.url=jdbc:postgresql:\/\/localhost:5432\/mydb spring.datasource.pg.username=postgres spring.datasource.pg.password=123456 spring.datasource.pg.driver-class-name=org.postgresql.Driver 步骤三:使用多数据源 在SpringBoot的配置类中注入DataSource接口,根据需求选择使用MySQL或PG数...

从零开始学Spring Boot系列-集成MySQL
数据库操作- 创建数据库: CREATE DATABASE your_database_name;- 创建表并插入数据: 以JPA实体映射表结构,执行CRUD操作。Spring Boot集成- 添加Spring Boot依赖: dependencies { implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'mysql:mysql-connector-java' }- ...

Spring Boot整合MyBatis连接数据库
1. 环境配置:确保MySQL版本与mysql-connector-java版本匹配,8.0以上版本需使用对应版本的驱动。2. 数据源配置:使用YAML文件替换properties,配置Spring Boot访问数据库所需的细节,如driver-class-name。3. 测试基础连接:通过创建实体、DAO、Service和Controller层进行测试,虽然会遇到@Autowired注解识别问题...

如何使用Spring配置文件内的数据源发布报表
具体的实现步骤如下:第一步:设计报表 这里使用mysql数据库为例做报表,数据源名称为”mysqlCon”,第二步:读取Spring配置文件内的数据源工具类及工具类配置 1、 编写读取Spring配置文件内的数据源工具类 为避免每一个jsp运行报表时,在Jsp内都要用大段重复的代码获取数据源生成报表运行的上下文环境(...

springboot多数据源配置(springboot多数据源配置和切换苞米豆)_百度知...
springboot、mybatis-plus、Druid多数据源环境搭建 Java单体项目里,我们一般是只需配置一个数据库,这时代码里的dao层都是只对一个数据库操作;但有时候我们的数据可能在2个或者3个数据库,这时就需要配置更多数据源,进行数据库直连操作,下面以MySQL的两个库为例(Oracle也就换个驱动类与连接串)。 (本文阅读大概花费...

SpringBoot数据库连接池常用配置
在SpringBoot应用中,数据库连接池的配置对性能和资源管理至关重要。以下是关于两个主要数据源的常用配置示例:首先,对于主数据源(primary)的配置:URL: jdbc:mysql:\/\/localhost:3306\/test?useUnicode=true&characterEncoding=utf-8 用户名: test 密码: 123456 驱动: com.mysql.jdbc.Driver 连接...

如何在springboot+mybatis动态连接oracle和mysql中
为了在Spring Boot + MyBatis 动态连接 Oracle 和 MySQL 数据库,我们首先要确保在项目配置中引入必要的依赖。在 pom.xml 或 build.gradle 文件中,添加 Spring Boot 数据源和 MyBatis 相关依赖。接下来,我们需要在 application.properties 或 application.yml 文件中配置两个数据源,分别用于 Oracle 和...

SpringBoot整合Mysql实现动态字段存储
要实现SpringBoot与MySQL的动态字段存储,首先,你需要创建一个数据库,特别关注于设计一个能够容纳JSON数据的字段。这个字段应足够灵活,以适应未来可能需要添加的任何额外信息。接着,设计一个实体类(Entity Class),确保它与数据库表结构相对应。在这个实体类中,你需要处理JSON字段的存储和检索。在类的...

spring整合myBatis配置数据源老报错,求大神帮忙看看
意思说你的sqlSessionFactoty配置有问题,估计是你的数据源配置错了,给你段代码参考吧 <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <property name="driverClassName" value="com.mysql.jdbc.Driver" \/> <property name="url" value="jdbc:mysql...

相似回答