Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Spring with Hibernate Integrating Hibernate with Spring Create a SessionFactory and DataSource

Wed Desi
Wed Desi
328 Points

Can't run h2 server

I've set the following properties for Datasource:

giflib.db.driver = org.h2.Driver

giflib.db.url = jdbc:h2:tcp://localhost/~/Documents/IntelliJ IDEA/giflib-hibernate (My system runs on windows)

giflib.db.username = td

giflib.db.password = (blank)

I'm getting the following error:

H2 Console

Sorry, remote connections ('webAllowOthers') are disabled on this server.

I'm not familiar with the error. But I see that on the "giflib.db.url" you have different than what was shown on the video.

Instead of what you have right now: jdbc:h2:tcp://localhost/~/Documents/IntelliJ IDEA/giflib-hibernate

Try changing it to jdbc:h2:tcp://localhost/~/Documents/IntelliJ IDEA/giflib-hibernate/data/giflib and add a Directory named "data" on your project.