📐 原生Java环境配置
# 约定大于配置
Forest是基于约定大于配置的理念进行设计的,如果您已经添加好了forest-core
依赖,基本上可以什么都不配置,可直接跳转到《原生Java环境使用》学习如何上手使用
当然也可以进行些简单的配置
# 简单配置
// 获取 Forest 全局配置对象
ForestConfiguration configuration = Forest.config();
// 连接池最大连接数
configuration.setMaxConnections(1000);
// 连接超时时间,单位为毫秒
configuration.setConnectTimeout(2000);
// 数据读取超时时间,单位为毫秒
configuration.setReadTimeout(2000);
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
# 详细配置
Forest的详细配置说明,请参见《原生Java环境配置项》
帮助我们改善此文档 (opens new window)
上次更新: 2023/06/19, 17:37:19