Skip to content

Instantly share code, notes, and snippets.

@remeniuk
Created December 26, 2011 15:26
Show Gist options
  • Save remeniuk/1521403 to your computer and use it in GitHub Desktop.
Save remeniuk/1521403 to your computer and use it in GitHub Desktop.
<configuration>
<properties resource="properties/SqlMapConfig.properties" />
<environments default="development">
<environment id="development">
<transactionManager type="JDBC"/>
<dataSource type="POOLED">
<property name="driver" value="${driver}"/>
<property name="url" value="${url}"/>
<property name="username" value="${username}"/>
<property name="password" value="${password}"/>
</dataSource>
</environment>
</environments>
<mappers>
<mapper resource="ibatis/IDEA_TOPIC_SqlMap.xml"/>
</mappers>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment