问题描述
进入网页登陆用户时登陆页提示登陆失败但不弹出任何错误以下是我的hibernate.cfg.xml的配置不知道是不是有什么问题麻烦各位帮忙修改下<propertyname="dialect">org.hibernate.dialect.SybaseDialect</property><propertyname="connection.url">jdbc:jtds:sqlserver://localhost:1433;DatabaseName=exam</property><propertyname="connection.username">sa</property><propertyname="connection.password">sa</property><propertyname="connection.driver_class">net.sourceforge.jtds.jdbc.Driver</property><propertyname="myeclipse.connection.profile">test</property><propertyname="hbm2ddl.auto">create</property><propertyname="show_sql">true</property>
解决方案
解决方案二:
额竟然不报错!神了<propertyname="connection.url">jdbc:jtds:sqlserver://localhost:1433;DatabaseName=exam</property><propertyname="connection.driver_class">net.sourceforge.jtds.jdbc.Driver</property>
sqlserver2000的连接字符串和驱动类都不对吧
解决方案三:
估计是你登陆的逻辑有错误,你把配置文件发出来干什么
解决方案四:
<propertyname="connection.driver_class">com.microsoft.jdbc.sqlserver.SQLServerDriver</property><propertyname="connection.url">jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=exam</property>
这样试试
解决方案五:
晕到没看清题目配置文件没问题不报异常肯定是逻辑判断的问题断点跟吧