I'm trying to config tiles, but when i add the tiles dependency at pom.xml without change anything at my project. When i try to go to some page i just get:I already tryied whit sts 2.9.1, 2.9.2 and 3.0.0 . I use weblogic 11g 10.3.6.HTML Code:"10.4.5 404 Not Found The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent."
My dependency at pom is
Code:<dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-servlet</artifactId> <version>2.2.2</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> </exclusion> <exclusion> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> <exclusion> <groupId>junit</groupId> <artifactId>junit</artifactId> </exclusion> </exclusions> </dependency>
Anyone had this problem?


Reply With Quote