- 浏览: 928186 次
- 性别:
- 来自: 北京
最新评论
-
RonQi:
mingjie115 写道blue3377 写道 还是不行啊。 ...
is not allowed to connect to this MySQL server -
梁经国:
...
Hibernate的映射类型 -
费费先生:
[url]引用 [/url]
Hibernate与JDBC的区别 -
tiger16888:
说的都不行
xp出现i386asms的解决方法 -
greatghoul:
今天正为这问题苦恼呢,按方法轻松解决了,谢谢。
oracle启动服务时,启动之后又立即自动停止
文章列表
530,说明密码错误。
550,说明地址有错误,可能是盗连没有改。
详细的FTP错误列表
110 Restart marker reply. In this case, the text is exact and not left to the particular implementation; it must read: MARK yyyy = mmmm where yyyy is User-process data stream marker, and mmmm server's equivalent marker (note the spaces between markers ...
- 2006-12-19 21:24
- 浏览 1642
- 评论(0)
因为xinetd已经启动了vsftpd,而vsftpd设置成了stardalone模式,所以,先
停止xinetd服务, service xinetd stop ,然后 /usr/local/sbin/vsftpd &
启动ftp服务
500 OOPS: vsftpd: refusing to run with writable anonymous root
用chmod 775 /var/ftp,就可以登入了
比如您想让匿名用户上传和下载都在/var/ftp/pub,就可以把/var/ftp/pub的权限打开,如果没有这个目录,您要自己建一个;
[root@localhos ...
- 2006-12-19 21:23
- 浏览 15376
- 评论(0)
安装并运行VSFTPD:
错误:
[root@10 vsftpd-1.2.1]# make
gcc -c main.c -O2 -Wall -W -Wshadow -idirafter dummyinc
make: gcc: Command not found
make: *** [main.o] Error 127
vi main.c (用vi打开mian.c文件)
: set nu 127 (查看第127行代码)
- 2006-12-19 21:18
- 浏览 1549
- 评论(0)
用Annotations 给类或者类的属性加上约束(constraint),在运行期检查属性值是很优雅的.Hibernate Validator就是这样的一个框架.该框架是十分容易的(就像参考文档中宣称的那样),几乎没有什么学习曲线,Validator 是一个验证框架不需要和Hibernate的其他部分绑定就可以使用,只要在你的项目中添加Hibernate-annotations.jar库就可以了.
http://java.chinaitlab.com/Hibernate/40584.html
- 2006-12-19 21:13
- 浏览 2223
- 评论(0)
net.sf.hibernate.QueryException: unexpected token
配置文件错误。hibernate.cfg.xml中未增加*.hbm.xml
- 2006-12-19 21:11
- 浏览 2572
- 评论(0)
java 代码
public Tb_newsPO saveOrUpdateTb_news(Tb_newsPO tb_news) throws Exception {
Transaction tx = null;
try {
Session s = HibernateSessionFactory.currentSession();
tx = (Transaction) s.beginTransaction();
...
- 2006-12-15 10:30
- 浏览 2781
- 评论(0)
// Store Datebase ;
public String strStoreDeal(String s) {
String strReturn;
strReturn = s;
if(strReturn == null) strReturn = "" ;
strReturn = strReturn.trim();
strReturn = strReturn.replaceAll("&", "&");
strReturn = strRetur ...
- 2006-12-14 22:43
- 浏览 1433
- 评论(0)
js 代码
function KindInsertImage(url)
{
var element = document.createElement("img");
element.src = url;
KindSelect();
KindInsertItem(element);
KindDisableMenu();
KindReloadIframe();
}
Kind ...
- 2006-12-12 21:14
- 浏览 2082
- 评论(0)
js 代码
每一项都是js中的小技巧,但十分的实用!
1.document.write(""); 输出语句
2.JS中的注释为//
3.传统的HTML文档顺序是:document->html->(head,body)
4.一个浏览器窗口中的DOM顺序是:window->(navigator,screen,history,location,document)
5.得到表单中元素的名称和值:document.getElementById("表单中元 ...
- 2006-12-12 14:04
- 浏览 1239
- 评论(0)
最近StormPlayer小组里提了很多关于字幕加载的问题,多数是新人,而目前VeryCD的社区还主要集中在bbs,没有怎么关注这里。
现由先我来做个简单的字幕图解教程,希望对新人能有所帮助,并且等待日后有更好的图解教程来更新。
...
- 2006-12-12 09:29
- 浏览 6869
- 评论(0)
http://www.yesadmin.com/Article/266/356/yesadmin_article_113692.html
1. 文档背景介绍
文档主要以本人在一个类似日志系统的项目中对“会议记要”模块进行修改时所遇到的问题为背景,描述了Oracle 的Clob数据类型在Hibernate中的应用心得。现把心得小结一下,跟大家一块交流学习,本文的有关代码均已调试通过。
下面是“会议记要”模块的基本信息(其它与本文主题无关的信息均已省略):
名称
...
- 2006-12-07 15:43
- 浏览 5204
- 评论(2)
KindEditor是基于浏览器的简单的所见即所得(WYSWYG)HTML在线编辑器,有体积小、文件少、效率高等特点。它是100%用DHTML/JavaScript编写的,可以很方便地嵌入到ASP,ASP.NET,PHP,JSP等CGI程序里。
版权:免费(LGPL)
演示:http://www.kindsoft.net/editor/demo.html
下载:http://www.kindsoft.net/download/kindeditor-2.5.zip
2.5 变更内容:
1. 媒体和Flash改成EMBED。
2. 增加cssPath属性。
3. 全局变量前面加KE_。
关于 ...
- 2006-12-06 22:27
- 浏览 10339
- 评论(0)