Addiction Pom

What dependency should I add to the pom file to import org.apache.tiles.controller?

+1


source to share


2 answers


org.apache.struts.tiles.Controller is an interface in Struts Tiles 1.x which you can find in the maven artifact "org.apache.struts: struts-tiles"

<dependency>
    <groupId>org.apache.struts</groupId>
    <artifactId>struts-tiles</artifactId>
    <version>1.3.10</version>
</dependency>

      



Be aware that this only works with Struts 1.x, not Struts 2.

http://struts.apache.org/1.x/struts-tiles/

+1


source


According to https://tiles.apache.org/download.html#Tiles_3_as_a_Maven_dependency :



<dependency>
  <groupId>org.apache.tiles</groupId>
  <artifactId>tiles-extras</artifactId>
  <version>3.0.5</version>
</dependency>

      

0


source







All Articles