Como configurar a fonte de dados com o Spring for HikariCP?

Oi, eu estou tentando usar o HikariCP com o Spring para o pool de conexão. Estou usando jdbcTempLate e JdbcdaoSupport.
Este é o meu arquivo de configuração do Spring para d, atasource:

<bean id="dataSource" class="com.zaxxer.hikari.HikariDataSource">
    <property name="dataSourceClassName" value="oracle.jdbc.driver.OracleDriver"/>
    <property name="dataSource.url" value="jdbc:oracle:thin:@localhost:1521:XE"/>
    <property name="dataSource.user" value="username"/>
    <property name="dataSource.password" value="password"/>
</bean>

Infelizmente, porém, a seguinte mensagem de erro está gerando:

Cannot resolve reference to bean 'dataSource' while setting bean property 'dataSource'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in ServletContext resource [/WEB-INF/dispatcher-servlet.xml]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [com.zaxxer.hikari.HikariDataSource]: No default constructor found; nested exception is java.lang.NoSuchMethodException: com.zaxxer.hikari.HikariDataSource.<init>()

Alguém pode me dizer como resolver esse problema?

questionAnswers(8)

yourAnswerToTheQuestion