1

我想存储一个用户可配置的 GString ,该 GString 将绑定到一个域类,但我在找到一个很好的解决方案时遇到了问题。

示例(概念/伪/非工作

class Person{
    ...

    String displayFooAs;  //<-- contains a java.lang.String like '${name} - ${address}'
}


class Foo{

    String name;
    String address;
    String city;

    public String getDisplayAs(def person){

        return doStuff(this, person.displayFooAs); //<-- Looking for something simple.

    }



}

更新:

经过审查,我认为这种灵活性会带来安全风险。它将允许用户基本上将 sql 注入脚本写入“dispalyFooAs”。回到绘图板。

4

3 回答 3

1

你的意思是像:

public String getDisplayAs(def person){
  doStuff( this, person?.displayFooAs ?: "$name - $address" )
}

这在 Groovy 中有效,但我从未在 Grails 中将 SimpleTemplateEngine 嵌入到类似的东西中,因此需要进行大量测试以确保它按预期工作并且不会占用内存。

import groovy.text.SimpleTemplateEngine

class Person {
  String displayAs = 'Person $name'
}

class Foo {
  String name = 'tim'
  String address = 'yates'

  String getDisplayAs( Person person ) {
    new SimpleTemplateEngine()
          .createTemplate( person?.displayAs ?: '$name - $address' )
          .make( this.properties )
          .toString()
  }
}

def foo = new Foo()

assert foo.getDisplayAs( null )         == 'tim - yates'
assert foo.getDisplayAs( new Person() ) == 'Person tim'
于 2012-10-29T15:05:57.280 回答
0

我需要类似的东西,我将在闭包循环内评估 GString,以便模板引用它的属性值。我采用了上面的示例并将其形式化为用于后期 GString 评估的标准化类。

import groovy.text.SimpleTemplateEngine

class EvalGString {
    def it
    def engine

    public EvalGString() {
        engine = new SimpleTemplateEngine()
    }

    String toString(template, props) {
        this.it = props
        engine.createTemplate(template).make(this.properties).toString()        
    }
}    

def template = 'Name: ${it.name} Id: ${it.id}'
def eval = new EvalGString()

println eval.toString(template, [id:100, name:'John')
println eval.toString(template, [id:200, name:'Nate')

输出:

姓名:约翰 ID:100

姓名:内特 ID:200

于 2013-01-31T10:01:14.610 回答
0

你已经定义了

private static final String DEFAULT_DISPLAY_AS = '${name} - ${address}'

静态最终- 当然它不起作用?

将其定义为闭包

private def DEFAULT_DISPLAY_AS = {->'${name} - ${address}'}

并调用代码

DEFAULT_DISPLAY_AS()
于 2012-10-29T14:24:39.913 回答