`
renft
  • 浏览: 7156 次
  • 性别: Icon_minigender_1
  • 来自: 大连
社区版块
存档分类
最新评论
文章列表
  --查询表的大小 select t.owner,        t.segment_name,        (sum(t.blocks) * 8) / 1024 || 'M' as S,        t.segment_type   from dba_segments t  where t.owner = 'USER_NAME'  group by t.owner, t.segment_name, t.segment_type  order by t.owner, S desc   --修改表所在表空间   select T.owner,  t.segment ...
     通常业务模块多,规模庞大的系统都是有多个团队协力开发的,每个开发团队开发划分好的的业务模块。但是各个模块之间还有可能有互相调用依赖的关系,maven的多module特性可以很好解决这个问题,更合理的组织各个业务模块的代码。下面就介绍下maven module项目的创建。   创建一个maven工程module_test,4个module,结构参考下面。 maven_module ├─dao │   ├─service │   ├─web │ └─domain   1、New一个mavenproject,选择Create a simple project。 ...
maven是一个强大的代码构建和项目管理开源框架,现在越来越多项目使用maven来配置管理。对程序员来说主要关注它的代码配置管理,下面介绍下eclipse环境下创建一个maven项目。eclipse 4.5下载:http://www.eclipse.org/downloads/maven 3.3.3下载: http://maven.apache.org/download.cgi最新版的eclipse已经默认集成了maven无需下载插件,简单配置即可新建maven的项目。maven 下载后需要设定下环境变量。将安装文件解压到指定的目录中,如:D:\bin>jar xvf "C: ...
    hudson 是一个代码配置管理的利器,是一个可扩展的持续集成引擎,Hudson非常易于安装和配置,简单易用,下面看看我们是如何几分钟就快速搭建一个持续集成环境吧。一、安装hudson:  下载地址。http://www.eclipse.org/downloads/download.php?file=/hudson/war/hudson-3.3.1.war把下载的war包直接扔到tomcat下,启动tomcat即可。还有一种就是把Hudson配置成windows service 的方式,具体查看官网文档。http://wiki.eclipse.org/Hudson-ci/Instal ...
Global site tag (gtag.js) - Google Analytics