update docs

This commit is contained in:
开源海哥 2023-06-22 12:25:01 +08:00
parent 264e5e4af0
commit b9394780c7
2 changed files with 5 additions and 5 deletions

View File

@ -66,6 +66,7 @@ export default defineConfig({
{text: 'QueryWrapper', link: '/zh/base/querywrapper'}, {text: 'QueryWrapper', link: '/zh/base/querywrapper'},
{text: 'Db + Row', link: '/zh/base/db-row'}, {text: 'Db + Row', link: '/zh/base/db-row'},
{text: 'IService', link: '/zh/base/service'}, {text: 'IService', link: '/zh/base/service'},
{text: '配置选项', link: '/zh/base/configuration'},
] ]
}, },
{ {
@ -95,7 +96,6 @@ export default defineConfig({
{ {
text: '其他', text: '其他',
items: [ items: [
{text: '配置选项', link: '/zh/others/configuration'},
{text: '代码生成器', link: '/zh/others/codegen'}, {text: '代码生成器', link: '/zh/others/codegen'},
{text: 'APT 设置', link: '/zh/others/apt'}, {text: 'APT 设置', link: '/zh/others/apt'},
] ]

View File

@ -8,12 +8,12 @@
```java ```java
FlexGlobalConfig defaultConfig = FlexGlobalConfig.getDefaultConfig(); FlexGlobalConfig defaultConfig = FlexGlobalConfig.getDefaultConfig();
// use defaultConfig.setXxx(...); // defaultConfig.setXxx(...);
``` ```
### Spring MVC ### Spring MVC
不支持 同原生配置
### Spring Boot ### Spring Boot
@ -108,7 +108,7 @@ TypeHandler 扫描路径如果配置了该属性SqlSessionFactoryBean 会
## configuration ## configuration
本部分Configuration的配置都为 MyBatis 本部分Configuration的配置都为 MyBatis
原生支持的配置,有关配置请参考 [MyBatis Configuration](https://mybatis.net.cn/configuration.html#settings)。 原生支持的配置,有关配置请参考 [MyBatis Configuration](https://mybatis.org/mybatis-3/zh/configuration.html#%E8%AE%BE%E7%BD%AE%EF%BC%88settings%EF%BC%89)。
## global-config ## global-config