Hikari connection pooling + Hibernate 4.3.8 + Spring Data JPA configuration?

后端 未结 3 613
生来不讨喜
生来不讨喜 2021-01-29 04:41

please tell me. How can I configure the \"Hikari connection pooling + Hibernate 4.3.8 + Spring Data JPA configuration\"? Here is my configuration, but for some reason I am sure

相关标签:
3条回答
  • 2021-01-29 04:57

    Your datasource config should be like this:

     <beans:bean id="dataSource" class="com.zaxxer.hikari.HikariDataSource"  destroy-method="close">
                    <beans:property name="dataSourceClassName" value="com.mysql.jdbc.jdbc2.optional.MysqlDataSource"/>
                    <beans:property name="maximumPoolSize" value="5" />
                    <beans:property name="maxLifetime" value="30000" />
                    <beans:property name="idleTimeout" value="30000" />
                    <beans:property name="dataSourceProperties">
                              <beans:props>
                                  <beans:prop key="url">jdbc:mysql://localhost:3306/exampledb</beans:prop>
                                  <beans:prop key="user">root</beans:prop>
                                  <beans:prop key="password"></beans:prop>
                                   <beans:prop key="prepStmtCacheSize">250</beans:prop>
                                   <beans:prop key="prepStmtCacheSqlLimit">2048</beans:prop>
                                   <beans:prop key="cachePrepStmts">true</beans:prop>
                                   <beans:prop key="useServerPrepStmts">true</beans:prop>
                              </beans:props>
                    </beans:property>
    </beans:bean>
    

    Complete example with sample project to download can be found in link : http://frameworkonly.com/hikaricp-connection-pooling-in-spring-hibernate-jpa/

    0 讨论(0)
  • 2021-01-29 05:00

    If you want to use Hikari, you'll need to declare it, so your dataSource config should be

    <bean id="dataSource"
        class="com.zaxxer.hikari.HikariDataSource">
        <property name="driverClassName" value="${dataSource.driverClassName}" />
        <property name="jdbcUrl" value="${dataSource.url}" />
        <property name="username" value="${dataSource.username}" />
        <property name="password" value="${dataSource.password}" />
    </bean>
    
    0 讨论(0)
  • 2021-01-29 05:15

    We can also use it like below in customized JPAConfiguration class where you are establishing connection and creating entity Manager Factory object.

             import com.zaxxer.hikari.HikariConfig;
             import com.zaxxer.hikari.HikariDataSource;
    
    
            @Bean
            public DataSource dataSource() {
                // In classpath from spring-boot-starter-web
                final Properties props = new Properties();
                props.put("driverClassName", "com.mysql.jdbc.Driver");
                props.put("jdbcUrl", "jdbc:mysql://localhost:3306/master?createDatabaseIfNotExist=true");
                props.put("username", "root");
                props.put("password", "mysql");
                HikariConfig hc = new HikariConfig(props);
                HikariDataSource ds = new HikariDataSource(hc);
                return ds;
            }
    
    0 讨论(0)
提交回复
热议问题