私は、少数のChildrenドメインクラスが基本抽象ドメインクラスを拡張するGrailsアプリに取り組んでいます。また、多くの抽象ドメインクラスを持つ親ドメインクラスもあります。親に対して「grailsgenerate-all」を実行してから、多数の子を持つ親を作成すると、リストビューのリンクは、コントローラーまたはビューを持たない抽象ドメインクラスを指します。このビューを機能させる最も簡単な方法は何でしょうか。質問が少し曖昧な場合は、以下は物事をより明確にするのに役立ついくつかの擬似コードです。
ドメインクラス
abstract class Automobile{
String description
}
class Car extends Automobile{}
class Truck extends Automobile{}
class Dealership{
static hasMany = [automobiles:Automobile]
}
車とトラックでディーラーを作る
def car = new Car(description:"Toyota Camry").save()
def truck = new Truck(description : "Toyota Tacoma").save()
def dealership = new Dealership()
dealership.addToAutomobiles(car)
dealership.addToAutomobiles(truck)
dealership.save()
ディーラー用に生成されたshow.gspは、次のようになります。
<htm>
<table>
<tr>
<th>Id</th>
<td>${dealershipInstance.id}</td>
</tr>
<tr>
<th>Automobiles</th>
<td>
<ul>
<g:each in="${dealershipInstance.automobiles}" status="i" var="automobileInstance">
<li><g:link action="show" id="${automobileInstance.id}">${automobileInstance.description}</g:link></li>
</g:each>
</ul>
</td>
</tr>
</table>
</html>
基本抽象クラスAutomobileには独自のビューがないため、問題は自動車インスタンスへのリンクにあります。したがって、「表示」アクションは404を返します。この場合、適切なドメインクラスにリンクするための最良の方法は何でしょうか。これに対処する簡単な方法はおそらくありますが、私はそれを見つけていません。
助けてくれてありがとう。