最初にオブジェクトを作成し、コンストラクター メソッドを提供します
初期化が必要なのは 1 回だけです。
//2 Create a Context object VelocityContext context = newVelocityContext(); //3 Add you data objcts to this context context.put("person", newPerson(1,"小张",23)); //4 Choose a template Template template =Velocity.getTemplate("person.vm"); StringWriter sw = new StringWriter(); //5 Merge the template and you data toproduce the output template.merge(context, sw); sw.flush(); System.out.println(sw.toString());
テンプレート
person.vm $person.id=$person.name ----- ${person.id},${person.name},${person.age}
上記は、速度の 2 番目の応用例です - アクセス オブジェクトの内容 詳細については、PHP 中国語 Web サイト (m.sbmmt.com) に注目してください。