Created
February 28, 2012 18:58
-
-
Save zznate/1934387 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<bean class="com.datastax.drivers.jdbc.pool.cassandra.jdbc.HCQLDataSource" | |
id="cqlDataSource"> | |
<property name="clusterName" value="TestCluster"/> | |
<property name="keyspaceName" value="PortfolioDemo"/> | |
<property name="hosts" value="127.0.0.1:9170"/> | |
</bean> | |
<bean class="org.springframework.jdbc.core.JdbcTemplate" | |
id="jdbcTemplate" > | |
<constructor-arg ref="cqlDataSource"/> | |
</bean> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment