Fetch the repository succeeded.
主要功能
软件架构
一、使用源码开发部署步骤:
二、部署步骤:
三、使用多库启动模式:
假设你的SVN地址为D:\svn\demo, 那么你需要使用多库的启动方式
svnserve -d -r D:\svn
你的访问路径将是这样的: svn://localhost/demo
四、使用单库启动:
修改PjAuthService 的 formatRes方法增加
//替换项目根目录20190701 单库不带别名访问
res = StringUtils.replaceEach(res, new String[]{relateRoot+":"}, new String[]{""});
五、MySQL8.X支持:
<jdbc.mysql.version>5.1.14</jdbc.mysql.version>
//驱动
driver-class-name: com.mysql.jdbc.Driver
<jdbc.mysql.version>8.0.16</jdbc.mysql.version>
//MySQL.jdbc.url 增加 serverTimezone=UTC
MySQL.jdbc.url=jdbc:mysql://localhost:3310/svnadmin?characterEncoding=utf-8&serverTimezone=UTC
//驱动
driver-class-name: com.mysql.cj.jdbc.Driver
六、项目总结备忘:
使用1.4.2.RELEASE版本
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<!-- 必须是1.4.2版本,否则jsp访问不到 -->
<version>1.4.2.RELEASE</version>
jsp文件需要放置到META-INF/resources下才能访问
<resource>
<directory>src/main/webapp</directory>
<!--注意必须要放在此目录下才能被访问到 -->
<targetPath>META-INF/resources</targetPath>
<includes>
<include>**/**</include>
</includes>
</resource>
如果觉得还不错,请作者喝杯咖啡吧 ☺
Sign in for post a comment
Activity
Community
Health
Trend
Influence
:Code submit frequency
:React/respond to issue & PR etc.
:Well-balanced team members and collaboration
:Recent popularity of project
:Star counts, download counts etc.
Comments ( 5 )