Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
dotCMS でリモート ソースから vtl ファイルを解析することは可能ですか?
// this doesn't seem to work #dotParse("https://some.random.source.com/vtl/index.vtl")
通常はそうではなく、それを行うプラグインを作成するのは非常に簡単です。Javaコードを書かなくても、次のようなことができるはずです:
#set($code = $import.read("https://some.random.source.com/vtl/index.vtl")) $render.eval($context, $code)
欠点は、dotcms で vtl をレンダリングするよりもおそらくはるかに遅くなるということです。