- 浏览: 208395 次
- 性别:
- 来自: 厦门
最新评论
-
leihuoA:
请问一下这是什么意思呀
错误提示:Package Reference constraint name maximum length is limited to 30 character -
venus224:
andyiouv 写道我们都在追忆05那年的利物浦 今年真是惨 ...
myeclipse中使用svn -
andyiouv:
我们都在追忆05那年的利物浦 今年真是惨不忍睹 包子伤快好
myeclipse中使用svn -
nju33377678:
还是不行!这方法没用!
运行的时候报关于log4j的警告!解决方案 -
zhanght327:
configuration 文件夹有 N 个 是都要删除吗?
...
an error has occurred.See error log for more deta
文章列表
java.lang.NoClassDefFoundError: org/saxpath/SAXPathException
这个错误我查了很久,现象很奇怪,同样的程序和Jar包,在我同事的机子上是可以的!
后来我加了一个Jar文件
把JDOM目录lib下的saxpath.jar文件加到你的classpath
一定要记好哟!
- 2009-01-06 14:49
- 浏览 1841
- 评论(0)
由于把主键设置为string,当用hibernate处理后,会自己把主键当作Integer来处理,所以主键最好不要用string,否则会出现Invalid value for getInt() -的错误!
原因:
索引集合类(Indexed collections)
所有的集合映射,除了set和bag语义的以外,都需要指定一个集合表的索引字段(index column)——用于对应到数组索引,或者List的索引,或者Map的关键字。通过<map-key>,Map 的索引可以是任何基础类型;若通过<map-key-many-to-many> ...
- 2008-12-20 10:42
- 浏览 3503
- 评论(0)
错误:
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. ...
- 2008-12-12 19:19
- 浏览 2961
- 评论(0)
求助数据库连接: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 ...
- 2008-12-09 11:26
- 浏览 4403
- 评论(0)
在mysql 中建立引用约束的时候会出现MySQL ERROR 1005: Can't create table (errno: 150)的错误信息结果是不能建立 引用约束。
出现问题的大致情况
1、外键的引用类型不一样,主键是int外键是char
2、找不到主表中 引用的列
3、主键和外键的字符编码不一致
4.还有要建立外键的话,要先建立索引。没有建立索引也会出错。
- 2008-12-02 15:03
- 浏览 6980
- 评论(0)
org.springframework.jdbc.UncategorizedSQLException: Hibernate operation: could not insert:
Caused by: java.sql.SQLException: Field 'uid' doesn't have a default value
把uid设置为自动递增就ok!
- 2008-12-01 15:19
- 浏览 6588
- 评论(0)
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 ...
- 2008-11-21 11:36
- 浏览 8754
- 评论(2)
今天在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= ...
- 2008-11-19 16:26
- 浏览 8409
- 评论(0)
mysql数据库,把年份设置为year,返回前台自动加上日期
例如:
数据库中:year:2008
返回前台为:2008-01-01
如果把数据库设置为string就正常!
有点搞不明白!
- 2008-11-18 10:50
- 浏览 1225
- 评论(0)
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 ...
- 2008-11-14 18:04
- 浏览 6671
- 评论(0)
Tomcat在启动时出现如下异常问题:
严重: IOException while loading persisted sessions: java.io.EOFException
严重: Exception loading sessions from persistent storage
是因为保存在硬盘上的session数据读取失败,问题似乎不大,但是如果不处理一下,每次启动都会出现这个问题,处理方法如下:
将work下面的文件清空,主要是*.ser文件,或者只是删除掉session.ser亦可。
- 2008-11-12 10:26
- 浏览 960
- 评论(0)
JDK和JRE一定不能安装在同一文件夹中,(jdk自带的那个jre除外)否则运行的时候会找不到javac命令。
原因:JRE晚于JDK安装,而JRE只是提供Java运行环境,不需要javac编译命令的。 JRE安装前你会发现它会自动删除一些无关文件,如果同JDK安装在同一目录下,原本JDK中完好的javac命令就会被删除!!
解决方案:重新安装一次JDK 你会发现系统会安装两次文件 第一次的是jdk 第二次的是jre 只要保证你两次安装的目录不是同一个就OK
- 2008-11-07 20:54
- 浏览 2386
- 评论(0)
//二维数组。
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 ...
- 2008-10-10 17:47
- 浏览 1237
- 评论(0)
1.如何在注册表修改首页
点"开始">"运行">输入"regedit">打开注册表>然后按照下列路径打开 "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\main">双击StarPage,然后修改你要的网页地址点确定,然后关闭注册表重新启动计算机就可以了:)
2.如何在注册表里面修改开机启动的程序
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run ...
- 2008-10-10 15:12
- 浏览 1431
- 评论(0)
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 ...
- 2008-10-08 18:10
- 浏览 2189
- 评论(0)