Creating Domain Specific Languages with Groovy
Today marked the first day of the Groovy/Grails Experience, also known as 2GX, in Reston, Virginia. The conference spans three days and includes forty 90-minute sessions, panel discussions and code workshops. One of the first sessions of the day was Venkat Subramaniam's "DSL In Groovy." Domain specific languages have appeared on InfoQ in the past including an Introduction to Domain Specific Languages by Martin Fowler and Ian Roughley's article on Building Domain-Specific Languages in JRuby.
Venkat's session provided information about what DSLs are, there characteristics, the types of DSLs (internal vs. external), as well as, the Groovy features for creating and using them. Venkat primarily focused on creating internal DSLs using some of Groovy's built-in features:
- Method Missing - a special method that is called when a method can not be found allowing a developer to intercept the call
- Categories - allows new methods to be added to any class at runtime
- ExpandoMetaClass - a dynamically expandable bean
Besides these three features Venkat discussed the lack of constraints that Groovy places on developers and additional features that promote DSLs including:
- Closures
- Relaxed rules on the use of parentheses
- Built-in list and map syntax
- Property Missing
- Ability to dynamically add methods to an interface and have concrete classes also have the methods
- Categories allows you to tactically enhance a class
- ExpandMetaClass is far reaching, global in nature
- You may not want to affect a class globally
- Categories provide controlled flexibility
Domain specific languages are continuing to stay in the spotlight and can be created and used with Groovy with its built-in features.
Video?
by
Thom Nichols
Educational Content
Concurrency in Clojure
Stuart Halloway May 17, 2013
Confessions of an Agile Addict
Ole Friis Østergaard May 16, 2013
Web Development: You're Doing It Wrong
Stefan Tilkov May 16, 2013
Programming The Feynman Way
Ben Evans May 15, 2013





Hello stranger!
You need to Register an InfoQ account or Login to post comments. But there's so much more behind being registered.Get the most out of the InfoQ experience.
Tell us what you think