Skip to content

Commit

Permalink
update to v1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
litongjava committed May 2, 2024
1 parent e4757f2 commit 0d7a49b
Show file tree
Hide file tree
Showing 11 changed files with 354 additions and 8 deletions.
8 changes: 8 additions & 0 deletions docs/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,12 @@ export default defineUserConfig({
},
theme: themeConfig,
bundler: viteBundler(),
extendsPage: (page) => {
// 在 routeMeta 中设置目录信息
page.routeMeta = {
// 目录标题
title: page.title,
// ... 其他信息
};
},
});
4 changes: 4 additions & 0 deletions docs/.vuepress/config/plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// import { pwaPlugin } from "@vuepress/plugin-pwa";
import { seoPlugin } from "@vuepress/plugin-seo";
import { searchProPlugin } from "vuepress-plugin-search-pro";
import { autoCatalogPlugin } from "vuepress-plugin-auto-catalog";
export default [
// searchPlugin({}),
// pwaPlugin({}),
Expand All @@ -12,4 +13,7 @@ export default [
searchProPlugin({
// your options
}),
autoCatalogPlugin({
//插件选项
}),
];
2 changes: 1 addition & 1 deletion docs/zh/01_tio-boot 简介/02.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ If you are developing with Java 8, please use the following dependency:
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<graalvm.version>23.1.1</graalvm.version>
<tio-boot.version>1.4.0</tio-boot.version>
<tio-boot.version>1.4.2</tio-boot.version>
<lombok-version>1.18.30</lombok-version>
<hotswap-classloader.version>1.2.2</hotswap-classloader.version>
<final.name>web-hello</final.name>
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/02_部署/02.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<graalvm.version>23.1.1</graalvm.version>
<tio-boot.version>1.4.0</tio-boot.version>
<tio-boot.version>1.4.2</tio-boot.version>
<lombok-version>1.18.30</lombok-version>
<hotswap-classloader.version>1.2.2</hotswap-classloader.version>
<final.name>web-hello</final.name>
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/17_mybatis/01.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ MyBatis: MyBatis 是一个持久层框架,用于将 Java 对象和关系型
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<graalvm.version>23.1.1</graalvm.version>
<tio-boot.version>1.4.0</tio-boot.version>
<tio-boot.version>1.4.2</tio-boot.version>
<lombok-version>1.18.30</lombok-version>
<hotswap-classloader.version>1.2.2</hotswap-classloader.version>
<final.name>web-hello</final.name>
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/18_spring/03.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<spring-boot.version>2.5.6</spring-boot.version>
<main.class>demo.SpringWebFluxTioBootApp</main.class>
<tio-boot.version>1.4.0</tio-boot.version>
<tio-boot.version>1.4.2</tio-boot.version>
</properties>
<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/22_tio-http-server/03.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// 在build.gradle中添加以下依赖项以支持tio-boot和相关功能
implementation 'com.litongjava:android-view-inject:1.0'
implementation 'com.litongjava:litongjava-android-utils:1.0.0'
implementation 'com.litongjava:tio-boot:1.4.0'
implementation 'com.litongjava:tio-boot:1.4.2'
```

## 步骤 2: 创建 handler
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/30_spring-cloud/01.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ pom.xml
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<spring-boot.version>2.1.6.RELEASE</spring-boot.version>
<tio-boot.version>1.4.0</tio-boot.version>
<tio-boot.version>1.4.2</tio-boot.version>
<main.class>demo.ProductApp</main.class>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/99_案例/02.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<java.version>1.8</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<tio-boot.version>1.4.0</tio-boot.version>
<tio-boot.version>1.4.2</tio-boot.version>
</properties>
<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/99_案例/03.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<java.version>1.8</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<tio-boot.version>1.4.0</tio-boot.version>
<tio-boot.version>1.4.2</tio-boot.version>
<lombok-version>1.18.30</lombok-version>
<main.class>com.litongjava.tio.boot.sqllite.App</main.class>
</properties>
Expand Down
Loading

0 comments on commit 0d7a49b

Please sign in to comment.