Hi Colleagues,

I create war file using Maven. Than this file is deployed in Tomcat.
Finally I can find war file in webapps of Tomcat but I can see nothing 
at Applications in Tomcat menu.
Below there are my web.xml and POM.xml.
Can you maybe help.

Regards,
Rafal


Web.xml

<web-app xmlns="http://java.sun.com/xml/ns/j2ee"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
        xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd";
        version="2.4">
 <display-name>HomePage</display-name>
 <filter>
 <filter-name>HomePage</filter-name>
      <init-param>
          <param-name>applicationClassName</param-name>
          <param-value>no.arr.backend.webfeed.web.WebFeedServlet</param-value>
       </init-param>
 </filter>
    <filter-mapping>
      <filter-name>WebFeedServlet</filter-name>
        <url-pattern>/*</url-pattern>
     </filter-mapping>
</web-app>


POM.xml
 version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
  <modelVersion>4.0.0</modelVersion>
   <groupId>WebFeedRafal</groupId>
   <artifactId>WebFeedRafal</artifactId>
   <packaging>war</packaging>
   <version>0.0.1-SNAPSHOT</version>
   <build>
            <finalName>rssFeedRafal</finalName>
      </build>
   
</project>


-- 
You received this message because you are subscribed to the Google
Groups "Java EE (J2EE) Programming with Passion!" group.
To post to this group, send email to
java-ee-j2ee-programming-with-passion@googlegroups.com
To unsubscribe from this group, send email to
java-ee-j2ee-programming-with-passion+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/java-ee-j2ee-programming-with-passion?hl=en?hl=en

Reply via email to