Main Menu
Home Articles Directory Submit Popular Site Top Rated Site - Programming - Database - Management - Software Testing and Quality Assurance - Approaches, Process, Methods New Links RSS/Atom
Sponsors



  Main  |  Submit New Article  

  Popular articles (top10)  |  Top rated articles (top10)  |  Category List  

Main  arrow  Programming  arrow  Groovy  (57)


Sort by:   Title ( Title (A to Z) Title (Z to A)) Date ( Date (Old Links Listed First) Date (New Links Listed First)) Rating ( Rating (Lowest Score to Highest Score) Rating (Highest Score to Lowest Score)) Popularity ( Popularity (Least to Most Hits) Popularity (Most to Least Hits))
Articles currently sorted by: Date (New Links Listed First)


Visit   memcached and Grails, Part 1: Installing and using memcached    Last Update 2009/9/16 9:06
Category  Programming  arrow  Tools  :  Programming  arrow  Groovy
Description
In this first half of a two-part article focusing on memcached and Grails, author James Goodwill introduces you to the open source caching solution memcached. Topics covered in this article include installation, configuration, memcached client commands, and evaluating the effectiveness of your cache. Unlike articles about using memcached with a language-specific client, this one focuses on direct interaction with the memcached server. The goal is to give you the tools you need to monitor your instance of memcached as well as to prepare you for the second half of the article, in which you will integrate memcached into a Grails application.

Hits: 16  
Modify  |  Report Broken Link  |  Tell a Friend  |  Comments (0)

Visit   Mastering Grails: Creating a custom plug-in    Last Update 2009/9/16 9:04
Category  Programming  arrow  Groovy
Description
This article shows you how to create your own Grails plug-in. Once you see how effortless it is to create a plug-in, you'll understand why more than 250 Grails plug-ins are available now, with new ones being added all the time.

Hits: 6  
Modify  |  Report Broken Link  |  Tell a Friend  |  Comments (0)

Visit   Grails and Continuous Integration: An Essential Combo    Last Update 2009/9/10 9:22
Category  Software Testing and Quality Assurance  arrow  Software Testing  arrow  Unit Testing  :  Approaches, Process, Methods  arrow  Agile  :  Programming  arrow  Configuration Management / DevOps  :  Programming  arrow  Tools  :  Programming  arrow  Groovy
Description
Grails is a fantastic framework. As well as being ultra-productive and fun to work with, it encourages good testing practices, and provides a swathe of tools to make writing unit, integration, and web tests a real pleasure. As we will see, Grails also lends itself quite well to build automation. However, Grails is not Maven. Grails has a fairly loose concept of the software development lifecycle, and is happy to let you bundle up and deploy your application as a WAR file without running all the unit and integration tests first. A Continuous Integration (CI) server can help you keep the flexibility of the Grails development process, and still ensure that your code is fully tested for each and every code change. In this article, we will take a look at how you can introduce Continuous Integration into your Grails project. More specifically, we will walk through how you can automate your Grails testing and code quality metrics with Hudson, a popular open source CI tool.

Hits: 25  
Modify  |  Report Broken Link  |  Tell a Friend  |  Comments (0)

Visit   Orchestrating RESTful Services With Mule ESB And Groovy Popular articles    Last Update 2009/9/9 5:51
Category  Programming  arrow  Tools  :  Approaches, Process, Methods  arrow  Software Architecture  :  Programming  arrow  Platforms  arrow  Services / Microservices  :  Programming  arrow  Groovy
Description
David Dossot, co-author of Mule in Action, examines the power of Mule RESTpack and Groovy in orchestrating RESTful services in the Mule messaging platform.

Hits: 260  
Modify  |  Report Broken Link  |  Tell a Friend  |  Comments (0)

Visit   Practically Groovy: The @Delegate annotation    Last Update 2009/8/27 6:44
Category  Programming  arrow  Groovy
Description
Scott Davis continues the discussion about Groovy metaprogramming with an in-depth look at the @Delegate annotation, which blurs the distinctions between data type and behavior and static and dynamic typing.

Hits: 18  
Modify  |  Report Broken Link  |  Tell a Friend  |  Comments (0)

Visit   Java development 2.0: Hello Google App Engine    Last Update 2009/8/27 6:37
Category  Programming  arrow  Java  :  Programming  arrow  Tools  :  Programming  arrow  Platforms  arrow  Services / Microservices  :  Programming  arrow  Groovy
Description
Open source solutions and borrowed infrastructures are changing the character of Java™ development, letting you deliver better software quickly and at a low cost. Andrew Glover, coining the term Java development 2.0 to encapsulate the cumulative force of these phenomena, launches a new series on some of the relevant tools and technologies. This first installment heralds the arrival of Java development 2.0 and explains how you can bring its concepts to fruition quickly with Google's App Engine for Java.

Hits: 23  
Modify  |  Report Broken Link  |  Tell a Friend  |  Comments (0)

Visit   Mastering Grails: Understanding plug-ins    Last Update 2009/7/28 18:13
Category  Programming  arrow  Tools  :  Programming  arrow  Groovy
Description
In this Mastering Grails installment, Scott Davis introduces you to the world of Grails plug-ins. Adding whole areas of new functionality to your applications couldn't be easier. You'll learn how plug-ins do their magic, and you'll use a plug-in to implement powerful search capabilities in the Blogito application.

Hits: 6  
Modify  |  Report Broken Link  |  Tell a Friend  |  Comments (0)

Visit   Practically Groovy: Metaprogramming with closures, ExpandoMetaClass, and categories    Last Update 2009/7/28 18:04
Category  Programming  arrow  Groovy
Description
Enter into the world of metaprogramming, Groovy-style. The ability to add new methods to classes dynamically at run time — even Java™ classes, and even final Java classes — is incredibly powerful. Whether used for production code, unit tests, or anything in between, Groovy's metaprogramming capabilities should pique the curiosity of even the most jaded Java developer.

Hits: 15  
Modify  |  Report Broken Link  |  Tell a Friend  |  Comments (0)

Visit   Managing Content through Tagging in Grails: Part 2    Last Update 2009/6/10 8:54
Category  Programming  arrow  Tools  :  Programming  arrow  Groovy
Description
In the previous part of the article by Jon Dickinson, we saw how to construct a domain model to allow files and messages to be tagged. In this part, we will see how to customize our home page and work with the templates and tags

Hits: 115  
Modify  |  Report Broken Link  |  Tell a Friend  |  Comments (0)

Visit   Managing Content through Tagging in Grails: Part 1    Last Update 2009/6/10 8:53
Category  Programming  arrow  Tools  :  Programming  arrow  Groovy
Description
As with messages, files are displayed on the home page in the order they are added to the system. Currently all messages and files are displayed on the home page. Over time, our home page is going to become rather large and unwieldy. We need a user's home page to show only the files and messages that they are interested in. To do this, users need to be able to tag their content. The new Grails concepts that will be introduced in this two-part article series by Jon Dickinson are:
* Working with inheritance in the domain classes, and looking at which strategies GORM supports for persistence
* Using polymorphic queries over a domain inheritance hierarchy
* Encapsulating view-rendering logic in GSP templates
* Manipulating collections with the Groovy collect and sort methods

Hits: 127  
Modify  |  Report Broken Link  |  Tell a Friend  |  Comments (0)



« 1 2 (3) 4 5 6 » 
Practical
Methods & Tools
RSS 2.0
Twitter
Contact
THEME_VALIDXHTML    THEME_VALIDCSS

Copyright (c) 2007-2013 Martinig & Associates | Methods & Tools Software Development Magazine | Privacy Policy
Software Development Tools | Software Development Articles | Software Development Directory | Software Development Videos
Software Development Jobs | Software Development News | Software Development Books
Software Development Blogs | Software Development Conferences