- 浏览: 422562 次
- 性别:
- 来自: 深圳
文章分类
- 全部博客 (115)
- spring (1)
- apache-hadoop (1)
- struts 2.x (12)
- ruby & rails (2)
- hibernate 3.x (1)
- oracle (2)
- sqlserver (6)
- maven (3)
- Java (29)
- tomcat (7)
- resin 3.x (2)
- javascript (10)
- eclipse (6)
- DWR (1)
- ibatis (4)
- Linux (4)
- servlet (1)
- J2EE项目分析 (7)
- Lucene (4)
- jQuery (1)
- mysql (2)
- OSGI (1)
- JMS ActiveMQ (2)
- 开源 (1)
最新评论
-
aplixy:
gaoyibin 写道我在io流关闭以后使用renameTo ...
Java File.renameTo方法一直返回false -
GGGGeek:
...
java反射:object is not an instance of declaring class -
zgw06629:
多谢了 字符串必须要单引号真得挺坑的
s:radio 默认值 -
com.張:
村上春树
java反射:object is not an instance of declaring class -
僧_唐:
该方法不能真正的解决 actionMessage或action ...
struts2中多action间传递ActionMessage,ActionError
一、下载安装文件
可执行文件:http://subversion.tigris.org/files/documents/15/44049/Setup-Subversion-1.5.3.msi
二、软件安装
可执行文件安装方法: 当然是双击直接运行Setup-Subversion-1.5.3.msi 咯。简单吧!
三、SVN服务端环境配置
创建资源库: 方法一>>在命令行输入svnadmin create E:\svn_repository,建立工程,svn自动会在该目录下建立若干文件。
资源库配置修改:进入目录" E:\svn_repository"
首先打开文件密码文件"passwd"添加
George.yin = a8.com
再打开权限文件"authz" :
### This file is an example authorization file for svnserve.
### Its format is identical to that of mod_authz_svn authorization
### files.
### As shown below each section defines authorizations for the path and
### (optional) repository specified by the section name.
### The authorizations follow. An authorization line can refer to:
### - a single user,
### - a group of users defined in a special [groups] section,
### - an alias defined in a special [aliases] section,
### - all authenticated users, using the '$authenticated' token,
### - only anonymous users, using the '$anonymous' token,
### - anyone, using the '*' wildcard.
###
### A match can be inverted by prefixing the rule with '~'. Rules can
### grant read ('r') access, read-write ('rw') access, or no access
### ('').
[aliases]
# joe = /C=XZ/ST=Dessert/L=Snake City/O=Snake Oil, Ltd./OU=Research Institute/CN=Joe Average
[groups]
# harry_and_sally = harry,sally
# harry_sally_and_joe = harry,sally,&joe
admin = george.yin
# [/foo/bar]
# harry = rw
# &joe = r
# * =
# [repository:/baz/fuz]
# @harry_and_sally = rw
# * = r
[/]
@admin = rw
*=r
最后打开服务配置文件"svnserve.conf"添加
### This file controls the configuration of the svnserve daemon, if you
### use it to allow access to this repository. (If you only allow
### access through http: and/or file: URLs, then this file is
### irrelevant.)
### Visit http://subversion.tigris.org/ for more information.
[general]
### These options control access to the repository for unauthenticated
### and authenticated users. Valid values are "write", "read",
### and "none". The sample settings below are the defaults.
anon-access = read
auth-access = write
### The password-db option controls the location of the password
### database file. Unless you specify a path starting with a /,
### the file's location is relative to the directory containing
### this configuration file.
### If SASL is enabled (see below), this file will NOT be used.
### Uncomment the line below to use the default password file.
password-db = passwd
### The authz-db option controls the location of the authorization
### rules for path-based access control. Unless you specify a path
### starting with a /, the file's location is relative to the the
### directory containing this file. If you don't specify an
### authz-db, no path-based access control is done.
### Uncomment the line below to use the default authorization file.
authz-db = authz
### This option specifies the authentication realm of the repository.
### If two repositories have the same authentication realm, they should
### have the same password database, and vice versa. The default realm
### is repository's uuid.
# realm = My First Repository
[sasl]
### This option specifies whether you want to use the Cyrus SASL
### library for authentication. Default is false.
### This section will be ignored if svnserve is not built with Cyrus
### SASL support; to check, run 'svnserve --version' and look for a line
### reading 'Cyrus SASL authentication is available.'
# use-sasl = true
### These options specify the desired strength of the security layer
### that you want SASL to provide. 0 means no encryption, 1 means
### integrity-checking only, values larger than 1 are correlated
### to the effective key length for encryption (e.g. 128 means 128-bit
### encryption). The values below are the defaults.
# min-encryption = 0
# max-encryption = 256
启动服务: 在命令行输入:svnserve -d 或者指定参数启动 svnserve -d -r e:\svn
四、SVN在Eclipse中的配置
在空白处右击---新建---资源库位置,在URL选项中写入:svn://localhost/),确定即可 在弹出的对话框中输入用户名和密码(为之前在文件修改的用户名和密码),确定 (在这一步如果出错请参见五、可能遇到的问题1和2
右击建立的资源库位置,新建一个远程文件夹,填入文件夹名,Next—Finish
右击新建的远程文件夹,选 导入 选项,选择导入目标文件的目录,点击确定即可
打开file菜单---New---Others….---SVN---从SVN中出去项目---next---选定资源库位置---Next---选择目标远程文件夹---Next---为项目命名---Finish
五、可能遇到的问题 Svn中文网
遇到eclipse重启的问题解决方法:设置我的电脑》高级》环境变量中的 APR_ICONV_PATH 指向svn-win32-1.5.5.zip zip包解压后的 iconv文件夹。
eclipse中 SVN Repository 视图中添加资源时会出现错误如:svn: No repository found in 'svn://localhost/svn/demo' 这时需要重新启动SVN服务改用这样的命令svnserve -d -r e:\svn\demo 启动时指定具体的路径,另外这样也行svnserve -d -r e:\svn 这时只指定了一个路径添加eclipse中添加时则用'svn://localhost/demo' 就行了。
安装成服务:
sc create svn binpath= "E:\dev\install\subversion\bin\svnserve.exe --service -r E:\svn_repository" displayname= "svnservice" depend= tcpip start= auto
说明:
svn : 这个名字是实质的服务名,displayname是现实名
E:\dev\install\subversion\bin\svnserve.exe为安装目录下的bin\svnserve.exe
--service:注意是两个--,写成-service是会出错的
E:\svn_repository:在安装时(svnadmin create E:\svn_repository)的目录
Displayname:服务显示名
可执行文件:http://subversion.tigris.org/files/documents/15/44049/Setup-Subversion-1.5.3.msi
二、软件安装
可执行文件安装方法: 当然是双击直接运行Setup-Subversion-1.5.3.msi 咯。简单吧!
三、SVN服务端环境配置
创建资源库: 方法一>>在命令行输入svnadmin create E:\svn_repository,建立工程,svn自动会在该目录下建立若干文件。
资源库配置修改:进入目录" E:\svn_repository"
首先打开文件密码文件"passwd"添加
George.yin = a8.com
再打开权限文件"authz" :
### This file is an example authorization file for svnserve.
### Its format is identical to that of mod_authz_svn authorization
### files.
### As shown below each section defines authorizations for the path and
### (optional) repository specified by the section name.
### The authorizations follow. An authorization line can refer to:
### - a single user,
### - a group of users defined in a special [groups] section,
### - an alias defined in a special [aliases] section,
### - all authenticated users, using the '$authenticated' token,
### - only anonymous users, using the '$anonymous' token,
### - anyone, using the '*' wildcard.
###
### A match can be inverted by prefixing the rule with '~'. Rules can
### grant read ('r') access, read-write ('rw') access, or no access
### ('').
[aliases]
# joe = /C=XZ/ST=Dessert/L=Snake City/O=Snake Oil, Ltd./OU=Research Institute/CN=Joe Average
[groups]
# harry_and_sally = harry,sally
# harry_sally_and_joe = harry,sally,&joe
admin = george.yin
# [/foo/bar]
# harry = rw
# &joe = r
# * =
# [repository:/baz/fuz]
# @harry_and_sally = rw
# * = r
[/]
@admin = rw
*=r
最后打开服务配置文件"svnserve.conf"添加
### This file controls the configuration of the svnserve daemon, if you
### use it to allow access to this repository. (If you only allow
### access through http: and/or file: URLs, then this file is
### irrelevant.)
### Visit http://subversion.tigris.org/ for more information.
[general]
### These options control access to the repository for unauthenticated
### and authenticated users. Valid values are "write", "read",
### and "none". The sample settings below are the defaults.
anon-access = read
auth-access = write
### The password-db option controls the location of the password
### database file. Unless you specify a path starting with a /,
### the file's location is relative to the directory containing
### this configuration file.
### If SASL is enabled (see below), this file will NOT be used.
### Uncomment the line below to use the default password file.
password-db = passwd
### The authz-db option controls the location of the authorization
### rules for path-based access control. Unless you specify a path
### starting with a /, the file's location is relative to the the
### directory containing this file. If you don't specify an
### authz-db, no path-based access control is done.
### Uncomment the line below to use the default authorization file.
authz-db = authz
### This option specifies the authentication realm of the repository.
### If two repositories have the same authentication realm, they should
### have the same password database, and vice versa. The default realm
### is repository's uuid.
# realm = My First Repository
[sasl]
### This option specifies whether you want to use the Cyrus SASL
### library for authentication. Default is false.
### This section will be ignored if svnserve is not built with Cyrus
### SASL support; to check, run 'svnserve --version' and look for a line
### reading 'Cyrus SASL authentication is available.'
# use-sasl = true
### These options specify the desired strength of the security layer
### that you want SASL to provide. 0 means no encryption, 1 means
### integrity-checking only, values larger than 1 are correlated
### to the effective key length for encryption (e.g. 128 means 128-bit
### encryption). The values below are the defaults.
# min-encryption = 0
# max-encryption = 256
启动服务: 在命令行输入:svnserve -d 或者指定参数启动 svnserve -d -r e:\svn
四、SVN在Eclipse中的配置
在空白处右击---新建---资源库位置,在URL选项中写入:svn://localhost/),确定即可 在弹出的对话框中输入用户名和密码(为之前在文件修改的用户名和密码),确定 (在这一步如果出错请参见五、可能遇到的问题1和2
右击建立的资源库位置,新建一个远程文件夹,填入文件夹名,Next—Finish
右击新建的远程文件夹,选 导入 选项,选择导入目标文件的目录,点击确定即可
打开file菜单---New---Others….---SVN---从SVN中出去项目---next---选定资源库位置---Next---选择目标远程文件夹---Next---为项目命名---Finish
五、可能遇到的问题 Svn中文网
遇到eclipse重启的问题解决方法:设置我的电脑》高级》环境变量中的 APR_ICONV_PATH 指向svn-win32-1.5.5.zip zip包解压后的 iconv文件夹。
eclipse中 SVN Repository 视图中添加资源时会出现错误如:svn: No repository found in 'svn://localhost/svn/demo' 这时需要重新启动SVN服务改用这样的命令svnserve -d -r e:\svn\demo 启动时指定具体的路径,另外这样也行svnserve -d -r e:\svn 这时只指定了一个路径添加eclipse中添加时则用'svn://localhost/demo' 就行了。
安装成服务:
sc create svn binpath= "E:\dev\install\subversion\bin\svnserve.exe --service -r E:\svn_repository" displayname= "svnservice" depend= tcpip start= auto
说明:
svn : 这个名字是实质的服务名,displayname是现实名
E:\dev\install\subversion\bin\svnserve.exe为安装目录下的bin\svnserve.exe
--service:注意是两个--,写成-service是会出错的
E:\svn_repository:在安装时(svnadmin create E:\svn_repository)的目录
Displayname:服务显示名
发表评论
-
windows下将jar文件设置成bat
2012-03-09 12:00 2360例如将如下jar包D:\bat\JRadiussimulato ... -
HttpURLConnection相关
2011-09-16 17:57 12071、java.io.FileNotFoundException ... -
UML中类之间的关系及其Java代码例子<转>
2011-05-11 09:38 2513关系是事物之间的联系 ... -
java反射:object is not an instance of declaring class
2011-04-12 09:56 79157/** * <pre> * &l ... -
XML、JavaBean转换
2011-02-11 11:48 2436引用转自http://lywybo.iteye.com/blo ... -
Proxool报错Exception in Thread "HouseKeeper" java.lang.NullPointerException
2011-01-19 17:45 9786问题: 当tomcat里的项目设置成reload=true时, ... -
log4j不打印日志文件到tomcat日志中
2011-01-18 11:06 9357如有以下log4j配置: log4j.rootLogger ... -
dom4j生成xml
2011-01-17 16:00 13581、XMLWriter输出domcument对象: XML ... -
JAVA中几种概念
2010-08-27 13:52 11601、高内聚(将逻辑上相关的抽象放在一起)低耦合(减少模块间的依 ... -
ehcache报告UnknownHostException错误
2010-06-05 15:07 4892报错如下: java.net.UnknownHostExc ... -
log4j中关闭memcached日志
2010-03-27 18:31 2585log4j.logger.com.danga.MemCache ... -
Java文件下载的几种方式
2010-01-06 15:02 1408public HttpServletResponse do ... -
TreeView鼠标放在node上显示文字
2009-12-08 20:39 1614在node的Text属性上,包一层<span>让其 ... -
BufferedReader和FileReader读取txt文件乱码
2009-11-11 14:11 5017读取txt文件乱码 BufferedReader rea ... -
c3p0 DEBUG -- CLOSE BY CLIENT STACK TRACE
2009-11-06 14:32 4638Indeed, there is nothing to wor ... -
Apach Common 包
2009-10-28 22:47 1218Common IO: FileUtils: File t ... -
File API 常用方法
2009-10-28 15:13 1272File f = new File("c:\\ ... -
Java File.renameTo方法一直返回false
2009-10-22 17:36 7460描述: 在使用File.renameTo修改文件名时,一直返 ... -
File的getPath getAbsolutePath和getCanonicalPath的不同
2009-10-14 21:21 4285引用http://www.blogjava.net/dream ... -
java读取某目录下所有文件名
2009-09-29 15:22 6923Java的Flie对象的list方法可以获取该目录下的所有文件 ...
相关推荐
svn服务端安装和使用svn服务端安装和使用svn服务端安装和使用svn服务端安装和使用svn服务端安装和使用svn服务端安装和使用svn服务端安装和使用svn服务端安装和使用svn服务端安装和使用svn服务端安装和使用svn服务端...
### SVN服务端安装步骤详解 #### 一、概述 Subversion(简称SVN)是一种集中式的版本控制系统,广泛应用于软件开发和其他需要版本控制管理的工作环境中。本文将详细介绍SVN服务端的安装步骤及相关命令,帮助读者...
在“SVN服务端安装版”中,我们通常指的是设置一个中央仓库服务器,这个服务器存储了所有的项目源代码和版本信息,其他团队成员可以通过客户端连接到这个服务器,进行代码的检出、提交、更新等操作。对于局域网环境...
本教程将详细讲解如何安装最新的SVN服务端,以及如何集成中文包。 首先,我们需要了解SVN服务端的核心组件——Apache Subversion Server,通常简称为Apache SVN或VisualSVN Server。它是SVN服务器的实现,支持...
在本篇中,我们将详细讨论如何安装和配置SVN服务端。 1. **SVN服务端选择** SVN服务端有两种常见的实现:Apache HTTP Server(通常与mod_dav_svn模块一起使用)和VisualSVN Server。Apache适合大型项目,因为它...
Windows下的SVN服务端安装教程 一叶知秋制作整理 1.依次安装TortoiseSVN,Subversion 2.将SVNService.exe拷贝到Subversion安装目录下的bin目录下 3.运行cmd,进入命令行,将目录切换到Subversion安装目录下的bin...
《SVN服务端安装与配置详解》 在IT行业中,版本控制系统是开发团队协作的重要工具,其中Subversion(简称SVN)因其强大的功能和易用性而被广泛使用。本篇文档将详细介绍如何在Windows环境下,基于Apache服务器安装...
以下是对"SVN服务端安装和配置步骤"的详细解释。 一、安装SVN服务器 1. **选择SVN服务器软件**:常见的SVN服务器软件有Apache HTTP Server(通过mod_dav_svn模块)和VisualSVN Server。这里我们以VisualSVN Server...
### SVN服务端安装和配置详解 #### 一、概述 Subversion(简称SVN)是一种分布式版本控制系统,广泛应用于软件开发和其他需要版本控制的场景。本文档主要介绍如何在Windows环境下搭建基于Apache的SVN服务器,并对...
1. SVN服务端安装: SVN服务端是团队共享代码库的核心,通常使用Apache Subversion服务器(也称作`svnserve`)或基于HTTP/HTTPS的Apache HTTP Server与mod_dav_svn模块。`svnserve`是轻量级的选择,配置简单,适用...
本文将详细介绍如何在服务器上安装和配置SVN服务端,以及涉及的相关配置文件。 首先,让我们了解 SVN 服务端的安装过程: 1. **选择操作系统**:SVN可以在多种操作系统上运行,包括Windows、Linux和macOS。这里...
一、SVN服务端安装与配置 1. 选择SVN服务端软件:常见的SVN服务器软件有VisualSVN Server(适用于Windows)和Apache Subversion(支持多平台)。VisualSVN Server以其易用性和强大的管理界面而备受青睐,而Apache ...
在本主题中,我们将深入探讨如何安装SVN服务端,以及涉及到的关键组件Subversion、sqlite-amalgamation-3.6.13和neon-0.29.0。 1. Subversion-1.6.5:这是SVN的一个特定版本,主要用于搭建服务器端。Subversion允许...
- SVN服务端安装:首先,下载对应平台的服务端安装包,例如对于Windows,可以选择VisualSVN Server。按照安装向导步骤进行,设置好仓库路径、端口号和认证方式(如基本认证或Windows域认证)。安装完成后,通过管理...
SVN服务端是整个版本控制系统的核心,它存储所有项目文件的版本历史。常见的 SVN 服务端软件有: 1. **VisualSVN Server**: 提供了一个易于安装和管理的 SVN 服务器解决方案,特别适合 Windows 环境。`VisualSVN-...
SVN 服务端和客户端加客户端破解文件 win7和xp都可以使用。
在这个主题中,我们将详细讨论如何配置SVN服务端以及客户端,尤其针对新手进行逐步指导。 首先,让我们了解一下SVN服务端的配置。SVN服务端通常使用Apache的Subversion模块(mod_dav_svn)或VisualSVN Server。这里...
SVN 服务端和客户端安装与使用 SVN(SubVersion)是一种版本控制软件,它可以帮助开发团队更好地管理项目代码。以下是关于 SVN 服务端和客户端安装与使用的详细知识点: why SVN 在软件开发过程中,版本控制是...