I'd like to use the Hibernate Reverse Engineering Wizard in my web application project. Unfortunately, I cannot connect to the database (see image below) with the hibernate.cfg.xml set to
<hibernate-configuration> <session-factory> <property name="hibernate.connection.driver_class">com.microsoft.sqlserver.jdbc.SQLServerDriver</property> <property name="hibernate.connection.url">jdbc:sqlserver://localhost\DATABACKEND:1433;databaseName=Example;integratedSecurity=true;</property> <property name="hibernate.default_schema">dbo</property> </session-factory> </hibernate-configuration> I can connect to the same database without any problem in the Services explorer with the URL connection string jdbc:sqlserver://localhost\DATABACKEND:1433;databaseName=Example;integratedSecurity=true; and the schema set to dbo (see image below).
I can also connect if I use SQL authentication on the server, instead of integrated Windows authentication. But as this is less secure, I'd prefer to use integrated authentication, which works just fine (as shown above) in the Services explorer.
I searched around for help, but other similar questions (see here and here) don't have answers that help. I'm running Netbeans 8.0.2, Microsoft SQL Server 2014, and SQLJDBC 4.2.

