ewsl的专栏
登录
注册
全站
当前博客
空间
博客
好友
相册
留言
王双利
ID:ewsl
共
26908
次访问,排名
4101(1)
好友
0
人,关注者
1
人
ewsl的文章
原创 40 篇
翻译 0 篇
转载 0 篇
评论 34 篇
ewsl的公告
本站点都是本人在开发中遇到,解决和想到的问题.基本上都是我的经验总结.希望能在开发的时候帮大家一点忙,少走一点弯路.还有一些是对现有系统的一些不成熟的想法
最近评论
inkcar:
刚转到JAVA方面,感觉这篇不错.
支持创新!
请问各位hibernate,ibatis高手.如何实现表单自定义及数据表结构自定义(添加新表结构)功能..........
cqhydz:
demo在哪里下呢,我看到的都是只有js文件的单独下载
king2003:
这个问题如何处理?
lcfzgb:
请给出具体做法,怎么实现呢?
fuliang:
可以参考一下Spring对JDBC的封装,里面使用Template模式和CallBack方式.大大减少了对jdbc的低级操作,你只需要自己实现
不同的callback接口来满足自己的需求
http://blog.csdn.net/fuliangliang
有那么一点介绍.
文章分类
Java
(RSS)
web页面
(RSS)
收藏
相册
存档
2007年12月(1)
2007年10月(1)
2007年07月(1)
2007年06月(1)
2006年11月(1)
2006年08月(3)
2006年07月(1)
2006年06月(3)
2006年05月(1)
2006年04月(4)
2005年12月(2)
2005年11月(2)
2005年09月(1)
2005年08月(11)
2005年07月(1)
2005年06月(1)
2005年04月(1)
2005年03月(2)
2005年02月(2)
软件项目交易
订阅我的博客
jira在本机成功和fisheye,svn集成
收藏
新一篇: JIRA 和fisheye,svn集成
|
旧一篇: 成功在wtp项目中使用maven
jira下载起来就可以用,至于授权码网上找一下就可以了,这里不说。
安装好后,从网上下载svn和fisheye插件,按照安装步骤,将jar和properties拷贝到对于位置,
下面主要说一下svn插件的配置 和fisheye 插件的配置。
svn插件需要配置的key:
svn.display.name=self
表示svn在jira中显示的名字。
在下面的图片中有箭头位置显示
svn.root=svn://localhost/self
表示svn的url,不需要多说
svn.username=lll
表示svn的用户名
svn.password=123456
表示svn的密码
其他地方不需要配置。
fisheye 插件配置,
首先介绍一下fisheye配置
<?
xml version="1.0" encoding="UTF-8"
?>
<
config
control-bind
="127.0.0.1:8079"
version
="1.0"
admin-hash
="96E79218965EB72C92A549DD5A330112"
>
<!--
NOTE: change this to the path to your svn-javavhl.jar"
-->
<
svn-config
jar
="E:/OpenSource/fisheye/org.tmatesoft.svn_1.1.0.beta4.standalone/javasvn-1.1.0.beta4/javasvn1.jar"
/>
<
web-server
>
<
http
bind
=":8880"
/>
</
web-server
>
<
api
enabled
="true"
/>
<
security
allow-anon
="true"
/>
<
repository-defaults
>
<
linker
/>
<
allow
/>
<
tarball
enabled
="false"
maxFileCount
="0"
/>
<
security
allow-anon
="true"
/>
<
text-indexer
enabled
="true"
/><
watches
enabled
="true"
/></
repository-defaults
>
<!--
NOTE: change this for the particulars of your repository
-->
<
repository
name
="svn"
description
="Our Subversion Repository"
enabled
="true"
>
<!--
change this to the URL to your repository
-->
<
svn
url
="file:///e:/temp/self"
path
="/"
blocksize
="100"
>
<!--
authentication information for accessing the repository
-->
<
auth
username
="wsl"
password
="123456"
/>
<!--
how frequently FishEye should ping Subversion (which is a quick operation)
-->
<
updater
pollPeriod
="15s"
/>
<!--
This tells FishEye how to interpret tags and branches.
This example follows the standard /trunk/, /branch/BRANCHNAME/,
/tags/TAGNAME/ convention.
The commented-out example below that is for the /PROJECT/trunk/,
/PROJECT/branches/BRANCHNAME/, /PROJECT/tags/TAGNAME/ convention.
-->
<
symbolic
><
trunk
logical
=""
name
="trunk"
regex
="trunk(/|$)"
/><
branch
name
="${1}"
regex
="branches/([^/]+)"
logical
=""
/><
tag
logical
=""
regex
="tags/([^/]+)"
name
="${1}"
/></
symbolic
>
<!--
<symbolic>
<trunk regex="([^/]+)/trunk(/|$)" name="trunk" logical="${1}"/>
<branch regex="([^/]+)/branches/([^/]+)" name="${1}-${2}" logical="${1}"/>
<tag regex="([^/]+)/tags/([^/]+)" name="${1}-${2}" logical="${1}"/>
</symbolic>
-->
</
svn
>
<
tarball
enabled
="true"
/><
security
/>
<
properties
><
property
name
="show-changelog-calendar"
value
="true"
/></
properties
></
repository
>
</
config
>
fisheye配置中,最主要的就是
<
repository
name
="svn"
description
="Our Subversion Repository"
enabled
="true"
>
<!--
change this to the URL to your repository
-->
<
svn
url
="file:///e:/temp/self"
path
="/"
blocksize
="100"
>
<!--
authentication information for accessing the repository
-->
<
auth
username
="wsl"
password
="123456"
/>
这几个,里面分别是svn在fisheye里面显示的名字,svn的相关配置,建议,将blocksize设置为100,默认的blocksize=1000,很容易报java heap space 错误。
下面讲jira的fisheye插件配置
配置文件名字如下
fisheye-jira-plugin.properties
其中相关参数
fisheye.replist=svn
其中的svn表示的就是上面的fisheye 中repository中对于的name,我前两天一直配不成功就是这个
fisheye.url=http://localhost:8880
表示进入fisheye的初始地址,也就是进入下面页面的地址
其他属性基本上不需要配。Ok这样就可以使用jira加上fisheye和svn插件了。
发表于 @
2006年08月23日 19:47:00
|
评论(
loading...
)
|
编辑
新一篇: JIRA 和fisheye,svn集成
|
旧一篇: 成功在wtp项目中使用maven
评论:没有评论。
发表评论
姓 名:
主 页:
校验码:
看不清,换一张
当前用户设置只有注册用户才能发表评论。如果你没有登录,请点击
登录