mirror of
https://github.com/201206030/novel.git
synced 2025-04-27 07:30:50 +00:00
v2.0.1发布,文档更新
This commit is contained in:
parent
2b58e4e85e
commit
53d169360f
@ -111,7 +111,13 @@ novel-admin :平台后台管理系统源码(独立项目,按需安装)
|
|||||||
|
|
||||||
1. 修改application.yml文件中数据库配置。
|
1. 修改application.yml文件中数据库配置。
|
||||||
|
|
||||||
2. 启动程序,登录后台系统,运行爬虫程序爬取小说数据。
|
2. 修改application.yml文件中Redis配置。
|
||||||
|
|
||||||
|
3. 修改application.yml文件中文件上传路径配置。
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
4. 启动程序,登录后台系统,运行爬虫程序爬取小说数据。
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
BIN
assets/upload_config.png
Normal file
BIN
assets/upload_config.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
<groupId>com.java2nb</groupId>
|
<groupId>com.java2nb</groupId>
|
||||||
<artifactId>novel-admin</artifactId>
|
<artifactId>novel-admin</artifactId>
|
||||||
<version>1.0.0</version>
|
<version>2.0.1</version>
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-parent</artifactId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
java2nb:
|
java2nb:
|
||||||
uploadPath: c:/var/java2nb/uploaded_files/
|
uploadPath: /var/java2nb/uploaded_files/
|
||||||
username: admin
|
username: admin
|
||||||
password: 111111
|
password: 111111
|
||||||
|
|
||||||
|
@ -113,9 +113,9 @@ function load() {
|
|||||||
field: 'id',
|
field: 'id',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
formatter: function (value, row, index) {
|
formatter: function (value, row, index) {
|
||||||
var d = '<a class="btn" style="color: #0a6aa1" href="#" mce_href="#" title="详情" onclick="detail(\''
|
/* var d = '<a class="btn" style="color: #0a6aa1" href="#" mce_href="#" title="详情" onclick="detail(\''
|
||||||
+ row.id
|
+ row.id
|
||||||
+ '\')">详情</a> <br/>';
|
+ '\')">详情</a> <br/>';*/
|
||||||
/*var e = '<a class="btn" style="color: #0a6aa1" href="#" mce_href="#" title="编辑" onclick="edit(\''
|
/*var e = '<a class="btn" style="color: #0a6aa1" href="#" mce_href="#" title="编辑" onclick="edit(\''
|
||||||
+ row.id
|
+ row.id
|
||||||
+ '\')">编辑</a><br/> ';*/
|
+ '\')">编辑</a><br/> ';*/
|
||||||
@ -128,7 +128,7 @@ function load() {
|
|||||||
var cm = '<a class="btn" style="color: #0a6aa1" href="#" mce_href="#" title="章节管理" onclick="manageIndex(\''
|
var cm = '<a class="btn" style="color: #0a6aa1" href="#" mce_href="#" title="章节管理" onclick="manageIndex(\''
|
||||||
+ row.id
|
+ row.id
|
||||||
+ '\')">章节管理</a> ';
|
+ '\')">章节管理</a> ';
|
||||||
return d + r + p +cm;
|
return r + p +cm;
|
||||||
}
|
}
|
||||||
}]
|
}]
|
||||||
});
|
});
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
</parent>
|
</parent>
|
||||||
<groupId>xyz.zinglizingli</groupId>
|
<groupId>xyz.zinglizingli</groupId>
|
||||||
<artifactId>novel-front</artifactId>
|
<artifactId>novel-front</artifactId>
|
||||||
<version>2.0.0</version>
|
<version>2.0.1</version>
|
||||||
<name>novel-front</name>
|
<name>novel-front</name>
|
||||||
<description>小说精品楼-前台web网站</description>
|
<description>小说精品楼-前台web网站</description>
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ spring:
|
|||||||
# username: xiongxiaoyang
|
# username: xiongxiaoyang
|
||||||
# password: Lzslov123!
|
# password: Lzslov123!
|
||||||
url: jdbc:mysql://127.0.0.1:3306/books?useUnicode=true&characterEncoding=utf8&useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
|
url: jdbc:mysql://127.0.0.1:3306/books?useUnicode=true&characterEncoding=utf8&useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
|
||||||
username: root
|
username: books
|
||||||
password: test123456
|
password: books
|
||||||
cache:
|
cache:
|
||||||
ehcache:
|
ehcache:
|
||||||
config: classpath:ehcache.xml
|
config: classpath:ehcache.xml
|
||||||
|
Loading…
x
Reference in New Issue
Block a user