Created
July 31, 2012 02:52
-
-
Save ravikg/3213105 to your computer and use it in GitHub Desktop.
DB Connection Conf for SOLR
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
<dataConfig> | |
<dataSource type="JdbcDataSource" | |
driver="com.mysql.jdbc.Driver" | |
url="jdbc:mysql://localhost/dbname" | |
user="username" | |
password="password"/> | |
<document name="content"> | |
<entity name="id" query="SELECT * from document"> | |
<field column="id" name="id" /> | |
<field column="name" name="name" /> | |
<field column="content" name="content" /> | |
</entity> | |
</document> | |
</dataConfig> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment