`
文章列表
http://blog.csdn.net/shuwei003/article/details/7986158

关于SVN 目录结构

    博客分类:
  • SVN
关于SVN 目录结构    Subversion有一个很标准的目录结构,是这样的。比如项目是proj,svn地址为svn://proj/,那么标准的svn布局是    svn://proj/    |    +-trunk    +-branches    +-tags     这 是一个标准的布局,trunk为主开发目录,branches为分支开发目录,tags为tag存档目录(不允许修改)。但是具体这几个目录应该如何使 用,svn并没有明确的规范,更多的还是用户自己的习惯。     对于这几个开发目录,一般的使用方法有两种。我更多的是从软件产品的角度出 ...

SVN配置

    博客分类:
  • SVN
SVN配置 1.安装前必备 获取 Subversion 服务器程序 到官方网站 http://subversion.tigris.org/      svn 各版本下载地址,http://subversion.apache.org/packages.html      windows 免安装版 http://sourceforge.net/projects/win32svn/files/1.7.5/ ...

连接池问题

    博客分类:
  • JAVA
connection耗尽不一定就是由connection leak引起,如果你的执行队列中线程数设置的比connection pool大,而且你的某些程序占用connection时间过长,致使执行队列中的线程已经把connection pool中的所有的connection都申请出来了,此时如果再有新的执行线程响应请求申请connection,pool中已经告罄,connection就无从得到了,只有等待。这从控制台的connection监控中是看得出的。这种情况下,如果程序能正确关闭connection,connection还是会被释放的,不会泄露。 还有一种情况是已获得connec ...

name2comment

    Option Explicit      ValidationMode = True      InteractiveMode = im_Batch            Dim mdl 'the current model            'get the current active model      Set mdl = ActiveModel      If (mdl Is Nothing) Then        MsgBox "There is no current Model"      ElseIf No ...

oracle语句

  sqlserver :select *  into  t1  from t     oracle:  create table test1 as(select * from test)
/**  *  */ package com.test; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import net.paoding.analysis.analyzer.PaodingAnalyzer; import net.paoding.analysis.examples.gettingstarted.BoldFormatte ...
select t.*, t.rowid from test t where t.mycomment  like '%缩放%' BEGIN   ctx_ddl.drop_preference ('my_lexer');   ctx_ddl.create_preference ('my_lexer', 'chinese_vgram_lexer');   --ctx_ddl.create_preference ('my_lexer', 'CHINESE_LEXER');   END; CREATE INDEX  myindex ON test(mycomment) indextype ...

读写文件

    博客分类:
  • JAVA
import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.InputStream; import java.io.OutputStream; /**  * @author Administrator  * @version v1.0, 2011-5-15  */ public class ...

流方式下载文章

    博客分类:
  • JAVA
流方式下载文章
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  <html xmlns="http://www.w3.org/1999/xhtml">  <head>  <meta http-equiv="Content-Type" content="text/html; c ...
SVN 整合apache 1.    安装SVN  建立资源库根目录:E:\SvnRoot 创建SVN服务:sc create svnserve binpath= "E:\svn-win32-1.5.1\bin\svnserve.exe --service  -r E:\SvnRoot" displayname= "Subversion" depend= "tcpip" start= "auto" 建立SVN资源库:svnadmin –create test3   2.    安装APACHE   注 ...
JIRA的安装,破解和sql server数据库配置 忙活了将近一天终于配置好了JIRA3.13的安装和配置。下边介绍一下在安装配置过程中碰到的一些问题和解决的方法: 1:如何使用keygen.class文件       在下载的带破解文件的压缩包中有一 ...
推荐一个 IE下的优秀js调试工具(Companion.JS) <script src="http://www.cnitblog.com/Files/yemoo/gg1.js" type="text/javascript"></script>       做 web开发的朋友都清楚,js程序的调试是相当郁闷的,因为首先这种语言语法比较灵活,它是一种弱类型的脚本语言,很多错误是无法控制的,这些不谈,最痛 苦的是没有什么好的调试工具,现在的情况比以前稍好,在Firefox下还有firebug,这的确是一个不错 ...
将以下代码加在 数据库操作之前     <% dim sql_injdata SQL_injdata = "'|and|exec|insert|select|delete|update|count|*|%|chr|mid|master|truncate|char|declare" sql_inj = split(SQL_Injdata,"|") if request.QueryString<>""  then   for each  sql_get in request.Quer ...
Global site tag (gtag.js) - Google Analytics