`
zhcheng
  • 浏览: 164366 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
eclipse-jee-galileo在线安装安装Maven2 IAM 地址是http://q4e.googlecode.com/svn/trunk/updatesite-iam/。 只选择做后一项Tooling就可以。
状态代码  状态信息  含义 100  Continue  初始的请求已经接受,客户应当继续发送请求的其余部分。(HTTP 1.1新) 101  Switching Protocols  服务器将遵从客户的请求转换到另外一种协议(HTTP 1.1新) 200  OK  一切正常,对GET和POST请 ...
聚集索引和非聚集索引的根本区别是表记录的排列顺序和与索引的排列顺序是否一致, 聚集索引表记录的排列顺序与索引的排列顺序一致,优点是查询速度快,因为一旦具有第一个索引值的纪录被找到,具有连续索引值的记录也 ...
update   update table set 字段1=case when 条件1 then 值1 when 条件2 then 值2 else 值3 end where ……   select       1、 select 字段1, 字段2, case 字段3 when 值1 then 新值 when 值2 then 新值 end as 重新命名字段3的名字 from table where …… order by ……     2、 select ...
opencms中创建指定类型的文件   CmsJspActionElement cms; CmsObject cmsObject = cms.getCmsObject(); List properties = new ArrayList(); //储存文件的属性 CmsProperty titleProp = new CmsProperty(); //属性 titleProp.setName(CmsPropertyDefinition.PROPERTY_TITLE); //属性的名称 titleProp.setResourceValue("title"); ...
eclipse-jee-galileo安装springIDE插件   首先先安装AJDT,从地址http://www.eclipse.org/ajdt/downloads/ 上下载AJDT for Eclipse 3.5 Zip,安装。   之后在eclipse上更新http://dist.springframework.org/release/IDE进行springIDE的安装    
I_CmsPublishEventListener是发布监听器的接口,定义自己的发布监听器需要实现这个接口。   public class EventListener implements I_CmsPublishEventListener { @Override public void onFinish(CmsPublishJobRunning publishJob) { //发布的资源 List<CmsResource> list = publishJob.getPublishList().getFileList(); ...
List<CmsResource> resources = new ArrayList<CmsResource>(); String path = cmsObject.getRequestContext().removeSiteRoot("资源的全部路径"); CmsResource resource = cmsObject.readResource(path); resources.add(resource); CmsPublishList publishList = OpenCms.getPublishManager ...
配置文件 opencms-workplace.xml 中的 <explorertypes> ……</explorertypes> 节点中配置的是右键菜单。   <explorertype name="folder" key="fileicon.folder" icon="folder.gif"> …… </explorertype>   其中配置的文件夹的右键菜单(name="folder"),可以选择相应的类型进行配置。   <explorert ...
SQL语句:   String sql = "select top ? * from bbs_posts where p_fid=? order by p_addtime desc"; prepStmt = conn.prepareStatement(sql); prepStmt.setInt(1, xxx); prepStmt.setInt(2, xx); prepStmt.executeQuery()   预编译:Exception:   java.sql.SQLException ...
Global site tag (gtag.js) - Google Analytics