Spring 3 MVC and Apache Tiles 2 Integration Error

后端 未结 9 1058
庸人自扰
庸人自扰 2021-01-04 06:15

I have been trying to integrate Spring (3.0.4 and 3.0.5) MVC with Apache Tiles (2.1.2,2.1.4 and 2.2.2) to no avail. In every case i get the following error:

java.lan

9条回答
  •  佛祖请我去吃肉
    2021-01-04 06:44

    I was having same problem, using version 2.2.2 of tiles. I switched to version 2.2.1 and it started to work. Here are my dependencies:

    
            org.apache.tiles
            tiles-jsp
            2.2.1
        
        
            org.apache.tiles
            tiles-core
            2.2.1
            compile
        
        
            org.apache.tiles
            tiles-api
            2.2.1
            compile
        
        
            org.apache.tiles
            tiles-servlet
            2.2.1
        
        
            org.apache.tiles
            tiles-template
            2.2.1
        
    

提交回复
热议问题