Groovy – Database

  • Post author:
  • Post category:Groovy
  • Post comments:0 Comments

Groovy’s groovy-sql module provides a higher-level abstraction over the current Java’s JDBC technology. The Groovy sql API supports a wide variety of databases, some of which are shown below. HSQLDBOracleSQL…

Continue ReadingGroovy – Database

Groovy – DSLS

  • Post author:
  • Post category:Groovy
  • Post comments:3 Comments

Groovy allows one to omit parentheses around the arguments of a method call for top-level statements. This is known as the "command chain" feature. This extension works by allowing one…

Continue ReadingGroovy – DSLS

Groovy – JSON

  • Post author:
  • Post category:Groovy
  • Post comments:1 Comment

This chapter covers how to we can use the Groovy language for parsing and producing JSON objects. JSON Functions Sr.NoFunction & Libraries1JsonSlurperJsonSlurper is a class that parses JSON text or…

Continue ReadingGroovy – JSON

Groovy – JMX

  • Post author:
  • Post category:Groovy
  • Post comments:1 Comment

JMX is the defacto standard which is used for monitoring all applications which have anything to do with the Java virual environment. Given that Groovy sits directly on top of…

Continue ReadingGroovy – JMX

Groovy – XML

  • Post author:
  • Post category:Groovy
  • Post comments:0 Comments

XML is a portable, open source language that allows programmers to develop applications that can be read by other applications, regardless of operating system and/or developmental language. This is one…

Continue ReadingGroovy – XML