Groovy EL 적용을 위한 스트링은 쌍따옴표
import tutor.*
class BootStrap {
def init = { servletContext ->
def guillame = new Author(name: 'Guillame')
guillame.save()
def root = new TutorialEntity(
title: '1 Root Title',
text: 'Root holder for all entries',
author: guillame
)
root.save()
for ( i in 1..5 ){
def entry = new TutorialEntity(
title: "1.$i Some Title",
text: 'a very long text ' * i,
author: guillame,
parentEntity : root
)
entry.save()
}
}
def destroy = {
}
}
홑 따옴표는 스트링
쌍따옴표는 규칙을 포함한 스트링인가보다.
홑따옴표로 했더니 $i 가 동작하지 않았다.
댓글