Archiv des Autors:

Twitter’s Bootstrap 2.0 released

Twitter recently released Bootstrap 2.0. Bootstrap is a open-source HTML/CSS toolkit (Apache 2 licence) to build modern websites or web applications. It’s not a framework but a set of css styles and jQuery plugins to help kick starting your application … Weiterlesen

Veröffentlicht unter Java Web Frameworks | Verschlagwortet mit , , , , , | Hinterlasse einen Kommentar

JSON as core type in PostgreSQL 9.2

It looks like PostgreSQL 9.2 will get a JSON core type. Additionally, there will be functions to produce JSON data from database queries: query_to_json() array_to_json() row_to_json() Here is a simple example that uses the new query_to_json function: This query will produce … Weiterlesen

Veröffentlicht unter Java Persistence | Verschlagwortet mit , | Hinterlasse einen Kommentar

Grails 2.0 Upgrade Guide

The Grails team has started a Google Plus discussion to gather feedback from the community on how their upgrade to Grails 2.0 went. To sum it up, small applications can be upgraded easily to Grails 2.0, but for large application … Weiterlesen

Veröffentlicht unter Groovy and Grails | Verschlagwortet mit , , | Hinterlasse einen Kommentar

Grails is getting Maven support

According to a recent blog post of Grails project lead Graeme Rocher, Grails is getting Maven support in the form of a plugin. Currently, Grails uses Maven repositories for dependency resolution, but the build system of a Grails application uses … Weiterlesen

Veröffentlicht unter Build, config and deploy, Groovy and Grails | Verschlagwortet mit , , , , , | Hinterlasse einen Kommentar

Firebug 1.9 released

The popular web developer tool Firebug has been released in version 1.9. The new features include: Firebug panel docking it is now possible to dock the Firebug panel to any of the four sides of the browser window. Syntax error … Weiterlesen

Veröffentlicht unter Java Web Frameworks | Verschlagwortet mit , , , | Hinterlasse einen Kommentar

Knockout JS 2.0.0 released – Dynamic JavaScript-UIs using Data Binding

The Knockout JS Team recently released version 2.0.0 of their JavaScript data binding framework. Knockout JS is a small Javascript library that offers declarative data binding for your HTML code. It enables you to separate you HTML code from your … Weiterlesen

Veröffentlicht unter Groovy and Grails, Java Web Frameworks | Verschlagwortet mit , , , , , | Hinterlasse einen Kommentar

Grails Database Queries – Criteria Builder vs. Where Queries [updated]

Before Grails 2.0 arrived, Grails offered 3 ways of doing a database query: dynamic finders HQL queries Hibernate Criteria Builder If the database query is very simple, dynamic finders are a good choice. But for everything else, I used Criteria … Weiterlesen

Veröffentlicht unter Groovy and Grails | Verschlagwortet mit , , , , , | 5 Kommentare