08-01
15
net.sf.hibernate.MappingException: Association references unmapped class: order.vo.KeysVO
作者:Java伴侣 日期:2008-01-15
遇到该错误:
1.检查你的hibernate.cfg.xml文件中是否添加了
<mapping resource="order/vo/KeysWordsVO.hbm.xml"/>
2.检查你的hibernate.cfg.xml文件中的相关联的两个<mapping resource=""/>的顺序,可能有其中一个需要引用另一个,但是另一个却还没有编译
3.相应的 hbm.xml中的类名没有写对,注意跟实际类名包名的符合
Tags: MappingException
有些东西解释不明白,报错例子是这样的:
elite在NewsVO中为boolean型。
更改成:
复制内容到剪贴板 程序代码
Query query=session.createQuery("FROM NewsVO as n where n.elite=:ELITE order by n.logtime desc");
query.setBoolean("ELITE", new Boolean(true));
query.setFirstResult(0);
query.setMaxResults(count);
query.setBoolean("ELITE", new Boolean(true));
query.setFirstResult(0);
query.setMaxResults(count);
elite在NewsVO中为boolean型。
更改成:
Tags: QueryException resolve property
MyEclipse中新建一个MessageBundle.properties文件,如果输入中文保存时就会提示错误:
Save could not be completed.
Reason:
some characters cannot be mapped using "ISO-8859-1" character encoding.
Either change the encoding or remove the characters which are not supported
by the "ISO-8859-1" character encoding.
Save could not be completed.
Reason:
some characters cannot be mapped using "ISO-8859-1" character encoding.
Either change the encoding or remove the characters which are not supported
by the "ISO-8859-1" character encoding.
引用内容
解决办法:
打开Eclipse的Preferences,选择General->Content Types,然后修改右面的Text下的Java Properites File的默认编码方式为UTF-8,点击Update就可以了!
打开Eclipse的Preferences,选择General->Content Types,然后修改右面的Text下的Java Properites File的默认编码方式为UTF-8,点击Update就可以了!
这两天一直在搞静态化页面,其实一片文章的模版替换倒是不难,只是在编码问题上卡住了一阵。
我的这个CMS系统使用的是UTF-8,在静态化页面的时需要在程序中指定编码,不然默认GB2312.如:
反之,在读取模版的时候一样页需要转码:
我的这个CMS系统使用的是UTF-8,在静态化页面的时需要在程序中指定编码,不然默认GB2312.如:
复制内容到剪贴板 程序代码
byte tag_bytes[] = templateContent.getBytes("UTF-8");
fileoutputstream.write(tag_bytes);
fileoutputstream.write(tag_bytes);
反之,在读取模版的时候一样页需要转码:
复制内容到剪贴板 程序代码
String templateContent = "";
FileInputStream fileinputstream = new FileInputStream(filePath);// 读取模块文件
int lenght = fileinputstream.available();
FileInputStream fileinputstream = new FileInputStream(filePath);// 读取模块文件
int lenght = fileinputstream.available();
帕赫贝尔的卡农(Pachelbel's Canon),年轻的帕赫贝尔,忍受着爱妻孩子死于鼠疫的巨大痛苦,创作出一组不朽的音乐,以纪念往逝的死者,其中的一首变奏曲,就是后人所称呼的D大调卡农(Canon in D Major)。准确地说,作为一种曲式名称,卡农并非特指一首曲子,其原意为“规则”,“同一旋律以同度或五度等不同的高度在各声部先后出现,造成此起彼落连续不断的模仿;一个声部的曲调自始至终追逐着另一声部,直到最后……最后的一个小结,最后的一个和弦,它们会融合在一起,永不分离”。用卡农手法写成的乐曲叫做“卡农曲”。