GDMT
GDMT

Reputation:

Which template engine and Ajax framework/toolkit can load templates from JAR files?

Which Template-Engine and Ajax-Framework/-Toolkit is able to load template information from JAR-Files?

Upvotes: 0

Views: 517

Answers (2)

Gerd Ziegler
Gerd Ziegler

Reputation:

Take a look at http://www.ztemplates.org which is simple and easy to learn. This one allows you to put all related templates, javascript and css into one jar and use it transparently. Means you even have not to care about declaring the needed javascript in your page when using a provided component, as the framework does it for you.

Upvotes: 1

Thilo
Thilo

Reputation: 262834

If you mean server-side template engines, you can get Velocity to load its templates from the classpath (which includes JAR files). Check out the section "Configuring the Resource Loaders (template loaders)" in the Developer Guide.

Upvotes: 1

Related Questions