`
venus224
  • 浏览: 208395 次
  • 性别: Icon_minigender_1
  • 来自: 厦门
社区版块
存档分类
最新评论
文章列表
java.lang.NoClassDefFoundError:  org/saxpath/SAXPathException 这个错误我查了很久,现象很奇怪,同样的程序和Jar包,在我同事的机子上是可以的! 后来我加了一个Jar文件 把JDOM目录lib下的saxpath.jar文件加到你的classpath 一定要记好哟!
由于把主键设置为string,当用hibernate处理后,会自己把主键当作Integer来处理,所以主键最好不要用string,否则会出现Invalid value for getInt() -的错误! 原因: 索引集合类(Indexed collections) 所有的集合映射,除了set和bag语义的以外,都需要指定一个集合表的索引字段(index column)——用于对应到数组索引,或者List的索引,或者Map的关键字。通过<map-key>,Map 的索引可以是任何基础类型;若通过<map-key-many-to-many> ...
错误: org.springframework.dao.InvalidDataAccessResourceUsageException: could not execute update query; nested exception is org.hibernate.exception.SQLGrammarException: could not execute update query Caused by: org.hibernate.exception.SQLGrammarException: could not execute update query Caused by: com. ...
求助数据库连接:ERROR 1045 (28000): Access denied for user (using password: YES)?? 其实只要加上主机ip就ok了。 后面需要加-h ServerIPAddr 如: mysql -u xx -p -h 192.168.1.1然后输入密码,就OK了 随便附上mysql常用的命令(以下内容转载自: 原文地址 http://engyy.com/?action=show&id=127&page=1): mysql命令行常用命令 第一招、mysql服务的启动和停止 net stop mysql net start mys ...
在mysql 中建立引用约束的时候会出现MySQL ERROR 1005: Can't create table (errno: 150)的错误信息结果是不能建立 引用约束。 出现问题的大致情况 1、外键的引用类型不一样,主键是int外键是char 2、找不到主表中 引用的列 3、主键和外键的字符编码不一致 4.还有要建立外键的话,要先建立索引。没有建立索引也会出错。
org.springframework.jdbc.UncategorizedSQLException: Hibernate operation: could not insert: Caused by: java.sql.SQLException: Field 'uid' doesn't have a default value 把uid设置为自动递增就ok!
myeclipse中使用svn 1.Help---> Software Updates--->Find and Install 2.Search for new features to install 3.New Remote Site 4.name:svn   URL: http://subclipse.tigris.org/update_1.4.x 5.等待加载完jar后,window - Show View - Other - SVN - SVN Repositories--->Add  SVN Repository 6.输入你公司的项目存放的url(比如我公司的是svn ...
今天在serviceImpl的查询中,调用了一样更新的操作! 结果出现如下错误! ERROR - Connection is read-only. Queries leading to data modification are not allowed org.springframework.jdbc.UncategorizedSQLException: Hibernate operation: could not execute update query; uncategorized SQLException for SQL [update t_node set fact_people= ...
mysql数据库,把年份设置为year,返回前台自动加上日期 例如: 数据库中:year:2008 返回前台为:2008-01-01 如果把数据库设置为string就正常! 有点搞不明白!
1.怎么处理警告:编码 GBK 的不可映射字符?   在javac中加上 <compilerarg    line="-encoding UTF-8 "/> <javac srcdir="${src.dir}" destdir="${classes.dir}" debug="true"> <compilerarg line="-encoding UTF-8 "/> <classpath refid="comp ...
Tomcat在启动时出现如下异常问题: 严重: IOException while loading persisted sessions: java.io.EOFException 严重: Exception loading sessions from persistent storage 是因为保存在硬盘上的session数据读取失败,问题似乎不大,但是如果不处理一下,每次启动都会出现这个问题,处理方法如下: 将work下面的文件清空,主要是*.ser文件,或者只是删除掉session.ser亦可。
JDK和JRE一定不能安装在同一文件夹中,(jdk自带的那个jre除外)否则运行的时候会找不到javac命令。 原因:JRE晚于JDK安装,而JRE只是提供Java运行环境,不需要javac编译命令的。 JRE安装前你会发现它会自动删除一些无关文件,如果同JDK安装在同一目录下,原本JDK中完好的javac命令就会被删除!! 解决方案:重新安装一次JDK 你会发现系统会安装两次文件 第一次的是jdk 第二次的是jre 只要保证你两次安装的目录不是同一个就OK
//二维数组。 int[] array = { 2, 3, 4 }; int[] array2; array2 = array; for (int m = 0; m < array2.length; m++) { System.out.println("m=" + array2[m]); } int[][] array3 = { { 10, 20, 30 }, { 40, 50, 60 } }; int[][] array4; array4 = array3; for (int d = 0; d < array4.leng ...
1.如何在注册表修改首页 点"开始">"运行">输入"regedit">打开注册表>然后按照下列路径打开 "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\main">双击StarPage,然后修改你要的网页地址点确定,然后关闭注册表重新启动计算机就可以了:) 2.如何在注册表里面修改开机启动的程序 HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run ...
1.web.xml中的配置 <context-param> <param-name>webAppRootKey</param-name> <param-value>swing.root</param-value> </context-param>  <!--=================由Sprng载入的Log4j配置文件位置======================--> <context-param> <param-name>log4jConfigLocation ...
Global site tag (gtag.js) - Google Analytics