私は例を手に入れました
#set($organizationId = $layout.getGroup().getOrganizationId())
のように書き直せますか
#set($organizationId = $layout.group.organizationId)
?
まったく同じになりますか?
私は例を手に入れました
#set($organizationId = $layout.getGroup().getOrganizationId())
のように書き直せますか
#set($organizationId = $layout.group.organizationId)
?
まったく同じになりますか?
はい。ここを参照してください: Velocity ユーザー ガイド - プロパティ ルックアップ ルールには次のように記載されています。
例として、$customer.address
シーケンスは
getaddress()
getAddress()
get("address")
isAddress()
より正確には、Velocity User Guide - Case Substitution :
$data.getRequest().getServerName()
## is the same as
$data.Request.ServerName