struts.xml file code
error ocured at browser like requested Resources is not available with struts 2 application in netbeans
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"
http://struts.apache.org/dtds/struts-2.0.dtd ">
<struts>
<include file="struts-default.xml"/>
<package name="Struts2Example" extends="struts-default">
<action name="entername">
<result>/nameinput.jsp</result>
</action>
<action name="sayhellow" class="Struts2Example.Hello">
<result name="input" >../nameinput.jsp</result>
<result>/response.jsp</result>
</action>
</package>
</struts>