I need to read a file from the file system and load the entire contents into a string in a groovy controller, what\'s the easiest way to do that?
A slight variation...
new File('/path/to/file').eachLine { line -> println line }