galera seguinte não estou conseguindo subi meu projeto web :oops: :oops: (estou acompanhando as videos aulas da devmedia strus 2 bi)
estou postando agora o problema pois não consigo nem rodar o jsp .
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<s:head theme="ajax" debug="true"/>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Struts 2 BI</title>
</head>
<body>
<div align="center">
<div>Struts 2 Making Business Intelligence</div>
<s:tabbedPanel id="Tabs">
<s:div label="Purchases" theme="ajax">Purchases</s:div>
<s:div label="Sales" theme="ajax">Sales</s:div>
</s:tabbedPanel>
</div>
</body>
</html>
struts.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foudation//DTD Struts configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<include file="struts-default.xml" />
<package name="default" extends="struts-default">
</package>
</struts>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4"
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 http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>Struts2BI</display-name>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
erro
HTTP Status 404 - /Struts2BI/--------------------------------------------------------------------------------
type Status report
message /Struts2BI/
description The requested resource (/Struts2BI/) is not available.
--------------------------------------------------------------------------------
Apache Tomcat/5.5.26
obs2:
ja importei as lib do struts e jstl necessaria
e o toncat esta instalado e rodando corretamente pois ja testei com uma jsp simples
rodando direto de dentro do eclipse
desculpem o post longo mas preciso da ajuda de vcs para prosseguir meu estudo
Desde de ja Agradeço a galera