Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×
Apache Software

Jakarta Velocity Tools 1.0 Released 28

Nathan Bubna writes "Jakarta Velocity Tools is a newly released project from the Apache Software Foundation. It provides servlets and tools for rapid, clean, MVC web development with Velocity, tools for using Velocity with the Jakarta Struts framework, and a set of generic tools to help with any Velocity project."
This discussion has been archived. No new comments can be posted.

Jakarta Velocity Tools 1.0 Released

Comments Filter:
  • I'm considering building a WebApp using JBoss + Tomcat + MySQL. However I'm still undecided on how to develop the frontend...I'm thinking JSP + something. Has anyone had any success with Velocity in a real-world product?
    • Absolutely. I work in auto finance and built a web credit app entry piece for our dealers using Velocity. Senior mgmt had balked at the idea for almost two years before I got the go ahead to do it. Within four months it was taking in almost half of our total business and was accounting for upwards of 60% of approved deals. Not bad for a ~100k of code (there are some reports online too) and about thirty templates...

    • by ryarger ( 69279 ) on Thursday July 17, 2003 @11:45AM (#6461682) Homepage
      Yes, I use Velocity as the central tempating engine for our in-house application server. What I really like about Velocity is that it forces seperation of presentation from code by completely disallowing arbitrary code inside of the template. You can still do everything you need to do with helper classes, which promotes great reusability and clean code.

      In my opinion Velocity is the best Java-based templating system and the second-best over all (next to Zope's near perfect PageTemplates system).
    • Yes. I love it. We used it for a on-line casino content management system. Basically I rewrote all the old JSPs the JSPs only compute values then invoking the Velocity templates for presentation. Good thing is I stored all the Velocity templates in a database with versioning. So the casino can have a live content release with an development release independently evolving. See Lokitech [lokitech.com] for details.
    • by JediTrainer ( 314273 ) on Thursday July 17, 2003 @05:20PM (#6465522)
      Absolutely!

      I'm leading a team of developers using Velocity for a large e-Business application, with many modules. It's a beauty to use, and our solution has won a few awards last year. We use a custom framework (not Struts, not VelocityServlet) to choose templates to load, since our app is designed to be highly customizable for each of our customers (medium or large business, including government). We also keep the locale in the session, and load the appropriate localized Velocity template if available. Let's just say this app is quite large. We now have well over a thousand Velocity templates, built up over the last few years.

      Unfortunately I'm not at liberty to identify the application or the company here, because the company is actually very much a Microsoft shop, and it's been a major political issue that I've had our team move our application away from Microsoft solutions (it used to be VB/ASP). But it's performed well and never let us down (although the 1.3 release of Velocity was quite buggy and we had to revert to 1.2 until 1.3.1 came out).

      I would wholeheartedly recommend Velocity. I had our team start using it because we ran into a huge mess with ASP (which I knew would repeat with JSP). Enforcing code separation between your view and your model is important, and Velocity does it beautifully. It avoids having a lot of unnecessary (and unmaintainable) cruft mixed in with your HTML.

      If you need more specific information, we can discuss it by email. I'll be happy to help you in any way that I can.
      • If you need more specific information, we can discuss it by email.

        I'd love more specific information...but what's your e-mail address? (it's not public)
    • Weave it with Tapestry:

      http://jakarta.apache.org/tapestry [apache.org]
    • Velocity is the preferred templating system in the Jakarta Turbine framework. I've used it in a web application I been developing and supporting over the past two years.

      Velocity is very comfortable. I find it cleaner than JSP. Its limitations tend to push logic back into the Java code where it belongs. You write a 'pull tool' to expose an API to the Velocity layer and then have a lot of freedom to design and redesign your interface.
      • Replying to my own post--

        One *huge* advantage of Velocity is that you can use it to generate documents other than web pages. I use it to create utility emails and in one case an XSL-FO document for PDF generation. I can leverage my web page velocity skills to these other realms.

        Not sure how you would do that in JSP or ASP!
        • You can use BRL [codesimply.net] that way. See the testsuite directory in the source distribution for how to process BRL files without any web framework. Additionally, there's a builtin function for LaTeX-escaping strings, in case you want really nicely formatted PDF reports, as I do. Additionally, when you embed code to generate an email within a file that generates a web page, the same nice template syntax is used as at the top level, unlike any similar technology that I'm aware of.
    • Not for a web front end, but for a generic templating solution. In addition, I noticed the other day that Posiden by Gentleware http://www.gentleware.com/ [gentleware.com] uses velocity. I really like it because (as others have mentioned) you really can't do any programming with it (unless you really torture it). It allows a really clean separation of the display from the logic.

      I don't understand the people who say it's difficult to use, from the template perspective all you do is put a dollar sign ($) and a bean name

  • FreeMarker (Score:3, Insightful)

    by Lordrashmi ( 167121 ) on Thursday July 17, 2003 @01:58PM (#6463266)
    I messed with Velocity but found it to be somewhat of a pain in the butt. I much prefer FreeMarker [sourceforge.net]. Similar features to Velocity, just easier to use. Oh and the documentation kicks ass, which is one area I found lacking in velocity.

    And no, I am not a freemarker developer, just a happy user.
    • Freemarker is great. It is reasonably powerfull and at the same time eliminates stabliity threatning features available in JSP.

      Cheers,

  • by one9nine ( 526521 ) on Thursday July 17, 2003 @02:53PM (#6463854) Journal
    I've looked through some of the docs on Jakarta but I don't see much of a differece between JSTL and Velocity except I feel that JSTL is much more cleaner. I was wondering if someone has had expereince with both and can explain the ups and downs of each.

    If you haven't used JSTL I strongly suggest that you give them a look as well. Very simple to use, very extensive and really make JSP alot faster to develop and maintain.

    • I've used both and the conclusion is (at least for me) that I like JSTL (and Taglibs in general) more.

      While Velocity provides for a clean separation of logic and presentation, so do taglibs with the added benefit that they are *much* easier on the webdesigner, and there is tool support to render them during design phase. Besides that, there *has* to be logic in the presentation, namely presentation logic. The backend gives a damn how a number has to be formatted, or from which resources actual pieces of te
  • Yet Another Template Language. Or is there a YATL out there already? VTL at a glance does not look very intuative or powerful (at a glance). If I am going to have code mixed with html, might as well make it Java, cause thats what the back end is. I'll stop trolling now, it's probably OK once you get used to it. (but so is hypothermia) Ok, now I'll stop trolling.
  • by atani ( 514575 )

    Since people are talking here about the separation of presentation and logic code, I'd simply like to throw in another toolkit which achieves this wonderfully: Janx [bearriver.com] (demo here [bearriver.com]).

    While total separation is not the goal, the fact that after only a couple of hours of me explaining the basics of flow control and context to purely HTML/Interface folks they were able to take full control of the user interface development and maintenance of an active online magazine.

    Mod me as a troll if you will, but I've yet t

  • I've used jsp, WebMacro, jsp+struts, and a few other other presentation layers. I really like Velocity because it enforces the separation between the controller and the view (unlike jsp-based templating languages, which often get abused to include business logic by poor programmers who don't know what they should be doing). Since you have to explicitly put something in the velocity context via the controller, the view can only display what has been put in its context.

    The other advantage of velocity is i

Without life, Biology itself would be impossible.

Working...