Results 1 to 2 of 2

Thread: Spring Tiles - Config

  1. #1

    Default Spring Tiles - Config

    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:
    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."
    I already tryied whit sts 2.9.1, 2.9.2 and 3.0.0 . I use weblogic 11g 10.3.6.
    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?

  2. #2
    Join Date
    Sep 2008
    Location
    Hamburg, Germany
    Posts
    1,638

    Default

    Hey!

    Does this work when running Maven and the project from the command line? Just wanna find out whether this is a tooling issue or another problem. Maybe it might also be helpful to ask this question in the Spring web forum? Just an idea...

    Cheers,
    -Martin
    Martin Lippert
    SpringSource, a division of VMware
    SpringSource Tools Team
    http://www.springsource.com
    http://twitter.com/martinlippert

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •