Skip to content

Instantly share code, notes, and snippets.

@shekhargulati
Created January 14, 2011 13:15
Show Gist options
  • Save shekhargulati/779589 to your computer and use it in GitHub Desktop.
Save shekhargulati/779589 to your computer and use it in GitHub Desktop.
Spring Embedded database
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd">
<jdbc:embedded-database id="embeddedDatasource" type="HSQL"/>
</beans>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment