org.apache.tiles.controllerをインポートするには、pomファイルにどの依存関係を追加する必要がありますか?
2 に答える
1
org.apache.struts.tiles.Controller は Struts Tiles 1.x のインターフェースで、maven アーティファクト "org.apache.struts:struts-tiles" にあります。
<dependency>
<groupId>org.apache.struts</groupId>
<artifactId>struts-tiles</artifactId>
<version>1.3.10</version>
</dependency>
これは Struts 1.x でのみ機能し、Struts 2 では機能しないことに注意してください。
于 2009-01-02T11:41:08.577 に答える