通过jtds访问sql server2000的hibernate.cfg.xml的配置问题

问题描述

进入网页登陆用户时登陆页提示登陆失败但不弹出任何错误以下是我的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>

这样试试
解决方案五:
晕到没看清题目配置文件没问题不报异常肯定是逻辑判断的问题断点跟吧

时间: 2024-09-08 19:30:56

通过jtds访问sql server2000的hibernate.cfg.xml的配置问题的相关文章

Hibernate.cfg.xml配置总结

Hibernate的描述文件可以是一个properties属性文件,也可以是一个xml文件.下面讲一下Hibernate.cfg.xml的配置.配置格式如下: 1. 配置数据源 在Hibernate.cfg.xml中既可以配置JDBC,也可以配置JNDI.在本小节中讲述数据源如何配置. hibernate.cfg.xml <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-confi

hibernate配置-sqlyog数据库,配置hibernate.cfg.xml怎么配置呢!新手,请多指教

问题描述 sqlyog数据库,配置hibernate.cfg.xml怎么配置呢!新手,请多指教 sqlyog数据库,配置hibernate.cfg.xml怎么配置呢!新手,请多指教 解决方案 sqlyog不是数据库,而是mysql的一个可视化客户端.hibernate.cfg.xml配置主要是数据库的连接信息,找个完整demo照着改改. 解决方案二: sqlyog这是一个数据库管理工具.不是数据库.mysql ,oracle,sql server ? 解决方案三: 按照mysql已经配置好了谢谢

hibernate配置文件hibernate.cfg.xml的详细解释

标准的XML文件的起始行,version='1.0'表明XML的版本,encoding='gb2312'表明XML文件的编码方式 <?xml version='1.0' encoding='Utf-8'?> 表明解析本XML文件的DTD文档位置,DTD是Document Type Definition 的缩写,即文档类型的定义,XML解析器使用DTD文档来检查XML文件的合法性.hibernate.sourceforge.net/hibernate-configuration-3.0dtd可以

Hibernate的主配置文件hibernate.cfg.xml

1:Hibernate的主配置文件的名字必须是hibernate.cfg.xml(主要配置文件中主要配置:数据库连接信息,其他参数,映射信息):常用配置查看源码:Hibernate\hibernate-distribution-3.6.0.Final\project\etc\hibernate.properties 1.1:主配置文件主要分为三部分: 注意:通常情况下,一个session-factory节点代表一个数据库: 1.1.1:第一部分 数据库连接部分,注意"hibernate.conn

web app-项目找不到hibernate.cfg.xml也找不到applicationContext.xml

问题描述 项目找不到hibernate.cfg.xml也找不到applicationContext.xml 公司项目框架是ssh2使用注解开发.这两个文件是不是必须的?为什么会找不到呢web.xml配置如下<?xml version=""1.0"" encoding=""UTF-8""?> innermanager contextConfigLocation classpath:/config/spring/*.x

hibernate.cfg.xml测试问题

问题描述 hibernate.cfg.xml测试问题 我是hibernate的初学者,第一次使用,在进行hibernate.cfg.xml的时候有问题: 1:从官网粘贴过来的文件内容一直显示The word 'stdout' is not correctly spelled. 2:代码的颜色没有变化,都是黑色. 3:找不到source视图. 路径在:在src下面 hibernate的jar包导了11个. 各位哥哥姐姐帮帮忙.不胜感激! 解决方案 http://wayfarer.blog.51ct

我在hibernate.cfg.xml中配置两个mapping resource会提示页面会提示错误,配置一个就没问题,请各位大神帮忙

问题描述 <hibernate-configuration><session-factory><propertyname="connection.driver_class">oracle.jdbc.driver.OracleDriver</property><propertyname="connection.url">jdbc:oracle:thin:@localhost:1521:oorcl</pr

org.hibernate.HibernateException: /hibernate.cfg.xml not found

问题描述 执行HibernateTest.java报错:Exceptioninthread"main"org.hibernate.HibernateException:/hibernate.cfg.xmlnotfoundatorg.hibernate.internal.util.ConfigHelper.getResourceAsStream(ConfigHelper.java:173)atorg.hibernate.cfg.Configuration.getConfiguration

纯 hibernate hibernate.cfg.xml 事务 数据库操作 CRUD

import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.cfg.Configuration; public class test1 { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub Student s = new Students;