We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
目前 template.path 和 compile.path 只能配置成绝对路径。
template.path
compile.path
虽然相对路径也是支持的,但是相对路径可能会发生变化,存在不确定性,一般不建议使用。
template.path 在 web 集成模式中,会被限定在 webapp 目录下。而 compile.path 无法配置在 webapp 目录下。
现在要求能够把 compile.path 也能够配置在 webapp 目录下面。
具体配置如下:
template.path = ${webapp.dir}/WEB-INF/jetx/templates compile.path = ${webapp.dir}/WEB-INF/jetx/classes
主要增加对 System.getProperties() 环境变量的支持。
如:
${user.dir} ${java.io.tmp} ${webapp.dir}
为了保持向后兼容性,在 web集成中,将启用新的 JetWebResourceLoader,默认配置如下:
template.loader = jetbrick.template.web.WebResourceLoader template.path = /
以后如果在有相同需要配置 path,都启用变量支持。
The text was updated successfully, but these errors were encountered:
e8ae686
subchen
No branches or pull requests
目前
template.path
和compile.path
只能配置成绝对路径。虽然相对路径也是支持的,但是相对路径可能会发生变化,存在不确定性,一般不建议使用。
template.path
在 web 集成模式中,会被限定在 webapp 目录下。而compile.path
无法配置在 webapp 目录下。现在要求能够把
compile.path
也能够配置在 webapp 目录下面。具体配置如下:
主要增加对 System.getProperties() 环境变量的支持。
如:
为了保持向后兼容性,在 web集成中,将启用新的 JetWebResourceLoader,默认配置如下:
以后如果在有相同需要配置 path,都启用变量支持。
The text was updated successfully, but these errors were encountered: