posts - 14,  comments - 8,  trackbacks - 0

我的评论

免费的?
re: 开始学习struts2 虎啸龙吟 2008-12-29 23:59  
写的不错,加油!
re: SpringSide 3 中的安全框架 虎啸龙吟 2008-12-24 15:44  
讲的比较清楚、透彻!但有几个问题:
IS_AUTHENTICATED_ANONYMOUSLY、ROLE_MODIFY_USER等 有什么作用?由谁定义啊?
re: SpringSide 3 中的 Struts 2 虎啸龙吟 2008-12-24 15:38  
非常不错!比看springSide的源码清晰多了。节省了大量的时间。期待有更多的
springSide的文章。
re: 原创 Struts 2 PPT 分享(陆续更新中) 虎啸龙吟 2008-12-13 17:20  
最好还是ppt的好啊
纠正一下建表的几个小错误,正确的如下:
create table users(
id int not null auto_increment primary key ,
username varchar ( 20 ) not null ,
password char ( 32 ) not null ,
monicker varchar ( 30 ) not null ,
question varchar ( 30 ) not null ,
answer varchar ( 30 ) not null ,
email varchar ( 40 ) not null ,
qq varchar ( 12 ) not null ,
roleid int not null ,
score int not null default ' 0 ' ,
regtime timestamp not null default CURRENT_TIMESTAMP ,
logintime timestamp not null default ' 2007-01-01 00:00:00 ' ,
isdeleted varchar ( 2 ) not null default ' 0' ,
index (username),
index (monicker)
);

create table roles(
id int not null auto_increment primary key ,
rolename varchar ( 20 ) not null ,
privilegesFlag varchar ( 255 ),
index (rolename)
);

create table groups(
id int not null auto_increment primary key ,
groupname varchar ( 40 ) not null ,
creatorid int not null ,
createtime timestamp not null default CURRENT_TIMESTAMP ,
isdeleted varchar ( 2 ) not null default ' 0' ,
index (groupname)
);

create table users_groups(
id int not null auto_increment primary key ,
userid int not null ,
groupid int not null ,
jointime timestamp ,
status tinyint ,
index (userid),
index (groupid)
);
re: SpringSide 3 中的新特性 虎啸龙吟 2008-12-05 18:37  
请多写写springSide方面的好文
re: 再谈SpringSide 2.0 虎啸龙吟 2008-12-04 11:44  
看了你的文章后,启发很大啊。
期待您能出更多更好的springside方面的文章
顺便问一句:你的eclipse是什么版本啊?
re: SpringSide 复活 虎啸龙吟 2008-12-02 17:05  
好东西啊,请继续写完啊
re: 一个平庸程序员的想法。 虎啸龙吟 2008-11-02 18:47  
找到了共鸣。
什么时候来合肥啊?
re: 工作流java开发 虎啸龙吟 2008-07-04 14:15  
好,鼓励一下。希望多写些工作流方面的资料。
re: TWaver2.3 Released 虎啸龙吟 2008-06-21 18:27  
网管软件?
其实 博主这么辛苦 ,我们很是感激啊
re: jBPM任务管理之任务 虎啸龙吟 2008-05-10 12:21  
写的比较好啊,留个记号,等以后关注
re: EXTJS应用开发起步如此简便 虎啸龙吟 2008-05-01 16:49  
好哦啊
re: SpringSide 打不开了? 虎啸龙吟 2008-04-10 11:40  
域名没有备案啊
re: grails-cache插件——简介 虎啸龙吟 2008-03-31 08:40  
java下能用否?
re: 企业级Java快速开发平台FastUnit 虎啸龙吟 2008-03-16 12:38  
能不能不收费啊
re: Ext 2.0使用:组件开发模式 虎啸龙吟 2007-11-15 19:40  
我这里也有一段代码,是从Ext 论坛上摘下来的,实现用form当window来使用,我就是不能调用继承下来的类,请帮我实现一下:谢了.

ComplainFormWindow= function(){
this.complainForm= new Ext.form.FormPanel({
labelWidth: 75, // label settings here cascade unless overridden
url:'ComplainControlLayer.aspx',
frame:true,
bodyStyle:'padding:5px 5px 0',
width: 500,
items: [{
layout:'column',
items:[{
columnWidth:.5,
layout: 'form',
xtype:'fieldset',
title: 'Personal Information',
autoHeight:true,
items: [{
xtype:'textfield',
fieldLabel: '<b>First Name</b>',
name: 'fName',
allowBlank:false,
anchor:'95%'
},{
xtype:'textfield',
fieldLabel: '<b>Middle Name</b>',
name: 'mName',
anchor:'95%'
}
,
{
xtype:'textfield',
fieldLabel: '<b>Last Name</b>',
allowBlank:false,
name: 'lName',
anchor:'95%'
},
{
xtype:'textfield',
fieldLabel: '<b>E-mail Add</b>',
name: 'e-mail',
allowBlank:true,
vtype:'email',
anchor:'95%'
}]
},{
columnWidth:.5,
layout: 'form',
xtype:'fieldset',
title: '<b>Personal Information</b>',
labelWidth:60,
autoHeight:true,
items: [{
xtype:'textfield',
fieldLabel: '<b>Address</b>',
allowBlank:false,
name: 'address',
anchor:'95%'
},
{
xtype:'textfield',
fieldLabel: '<b>Ward No</b>',
allowBlank:false,
name: 'ward',
anchor:'95%'
}]
}]
},{
layout:'column',
xtype:'fieldset',
title:'<b>Other Information</b>',
autoHeight:true,
items:[{
columnWidth:.5,
layout: 'form',
autoHeight:true,
items: [this.deptCombo]
},{
columnWidth:.5,
layout: 'form',
labelWidth:50,
autoHeight:true,
items: [{
xtype:'textfield',
fieldLabel: '<b>Subject</b>',
name: 'subject',
allowBlank:false,
anchor:'95%'
}]
}]
}
,{
layout: 'form',
xtype:'fieldset',
title: '<b>Insert Comment</b>',
autoHeight:true,
items:[{
xtype:'textarea',
name:'comment',
allowBlank:false,
hideLabel:true,
height:120,
anchor:'98%'
}]

}],
buttons: [{
text: 'Save',
handler:this.formSubmit,
scope:this
},{
text: 'Cancel',
handler: function(){
this.hide();
},
scope:this

}]


});
ComplainFormWindow.superclass.constructor.call(this, {
title: 'Layout Window',
closable:true,
width:800,
height:475,
closeAction:'hide',
layout: 'fit',
items:this.complainForm
});
}
Ext.extend(ComplainFormWindow,Ext.Window,{
formSubmit: function(){

if(this.complainForm.form.isValid())
{
this.complainForm.form.submit({params:{
requestData: 'addnewcomplain'},
failure: function() {
// Ext.MessageBox.alert('Error Message',"fail");
alert('h');
},
success: function() {
//win.close();
}
});
}
else{
Ext.Msg.alert('Complain Submit', 'Enter the Field');


}

}
});
re: Ext 2.0使用:组件开发模式 虎啸龙吟 2007-11-13 11:22  
具体怎么使用你构建的新组件呢?给个例子如何?
re: 最近买了Spring in Action 中文版。 虎啸龙吟 2006-08-19 01:35  
谢谢
<2009年1月>
28293031123
45678910
11121314151617
18192021222324
25262728293031
1234567

常用链接

留言簿

随笔分类

随笔档案

文章档案

相册

java技术

搜索

  •  

最新评论

阅读排行榜

评论排行榜