2014年1月16日
摘要: 指针理解一、 指针理解二、 阅读全文
posted @ 2014-01-16 23:57 heidsoft 阅读(399) 评论(0) 推荐(0) 编辑
摘要: As part of switching toApache Mavenfor building CloudStack, the .classpath and .project files used by Eclipse were removed. This page describes how to get CloudStack loaded into an Eclipse workspace. For more details on the actual build process with maven seeHow to build CloudStackUse a Recent Eclip 阅读全文
posted @ 2014-01-16 18:09 heidsoft 阅读(429) 评论(0) 推荐(0) 编辑
摘要: contextConfigLocation WEB-INF/beans.xml org.springframework.web.context.ContextLoaderListener org.springframework.web.util.Log4jConfigListener CXF Servlet CXFServlet org.apache.cxf.transport.servlet.CXFServlet 1 CXFServlet /rest/* ... 阅读全文
posted @ 2014-01-16 17:42 heidsoft 阅读(285) 评论(0) 推荐(0) 编辑
摘要: CloudStackContextLoaderListener/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache.. 阅读全文
posted @ 2014-01-16 17:29 heidsoft 阅读(634) 评论(0) 推荐(0) 编辑
摘要: org.apache.cloudstack.framework 阅读全文
posted @ 2014-01-16 17:13 heidsoft 阅读(459) 评论(0) 推荐(0) 编辑
摘要: Oracle权限设置一、权限分类:系统权限:系统规定用户使用数据库的权限。(系统权限是对用户而言)。实体权限:某种权限用户对其它用户的表或视图的存取权限。(是针对表或视图而言的)。二、系统权限管理:1、系统权限分类:DBA:拥有全部特权,是系统最高权限,只有DBA才可以创建数据库结构。RESOURCE:拥有Resource权限的用户只可以创建实体,不可以创建数据库结构。CONNECT:拥有Connect权限的用户只可以登录Oracle,不可以创建实体,不可以创建数据库结构。对于普通用户:授予connect, resource权限。对于DBA管理用户:授予connect,resource, db 阅读全文
posted @ 2014-01-16 15:38 heidsoft 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 合并分支用来维护独立的开发支线,在一些阶段,你可能需要将分支上的修改合并到主干,或者相反。It is important to understand how branching and merging works in Subversion before you start using it, as it can become quite complex. It is highly recommended that you read the chapterBranching and Mergingin the Subversion book, which gives a full descri 阅读全文
posted @ 2014-01-16 15:32 heidsoft 阅读(371) 评论(0) 推荐(0) 编辑
摘要: --创建临时表空间 --//Linux下的文件系统 create temporary tablespace cloudv2_temp tempfile '/home/oracle/app/oracle/oradata/cloudv2/cloudv2_temp01.dbf' size 64m autoextend on next 64m maxsize 2048m extent management local; --创建数据表空间 --//Linux下的文件系统 create tablespace cloudv2_data logging datafile '/home 阅读全文
posted @ 2014-01-16 13:35 heidsoft 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 1、语法:同义词 (SYNONMY) CREATE SYNONYM同义词名FOR 表名; CREATE SYNONYM同义词名FOR 表名@数据库链接名; Create synonym synonym_name for object_name. 同义词用途很广如医院触摸屏可能可能要访问HIS系统相关表,这时候可能要创建部分视图来供查询。 1、创建查询视图用户create user touchquery identified by password; 2、赋予相关权限grant select (any ) on view_name to touchquery; 3、创建同义词 Creat... 阅读全文
posted @ 2014-01-16 12:02 heidsoft 阅读(636) 评论(0) 推荐(0) 编辑
摘要: 1.创建分支 创建分支实际上就是将程序copy一份到指定的分支目录,如下图示:在项目名称上点击右键,弹出菜单,选择“Team”,再选择“Branch/Tag”,弹出下面的页面:上图中的“Copy to URL”填写创建新分支的路径地址,后面会将程序copy到该目录下,形成新的分支。点击“Next”:选择当前最新的版本,点击“Next”如果勾选了上图下面的switch working copy to new branch/tag,eclipse的程序项目会自动切换到分支下。这里我们不选择,待会自己切换。这样就创建了一个1.0的分支 2.合并可以从主干合并到分支,也可以从分支合并到主干,根据需.. 阅读全文
posted @ 2014-01-16 11:58 heidsoft 阅读(363) 评论(0) 推荐(0) 编辑