# 配置文件

基础的jweb-boot配置文件请参考jweb-boot配置文件章节,以下仅列出jweb-adaijboot.properties的配置如下:

#-------jweb 杂项配置区 start--------
# 代码生成器配置
# 代码生成模板存放目录
jweb.adai.generator.template.dir=E:\\generator\\template
# 文件上传配置,默认为{webroot}/assets/upload
jweb.adai.file.uploadPath=E:\\jweb\\upload
# 渲染器配置
# 扩展HTML模板解析引擎共享方法类
jweb.render.template.engine.shareMethodClasses=cc.jweb.adai.web.system.generator.utils.ModelUtils,cc.jweb.adai.web.system.generator.utils.GeneratorUtils
#-------jweb 杂项配置区 end--------
1
2
3
4
5
6
7
8
9
10

说明:

jweb.adai.generator.template.dir: 模板代码文件存放根目录,用于模板代码编辑生成文件存储

jweb.adai.file.uploadPath: 文件上传目录

jweb.render.template.engine.shareMethodClasses: 扩展jfinal的enjoy模板引擎模板共享方法。这里扩展了代码生成器模板渲染所需要的共享方法。可根据自己需要扩展其它共享方法。详情请参考jfinal的Shared Method 扩展 (opens new window)