Exception creating bean of class !!!!



  • Hallo,

    I übersetze die klasse HelloForm.java

    javac HelloForm.java

    keine Fehler un die HelloForm.class wird erstellt

    bei der Ausfüfrung vom Tomcat

    http://localhost:8080/MyWebApp/index.jsp

    Ic bekomme folgende Fehler

    Exception creating bean of class org.struts.example.HelloForm:

    struts-config.xml

    ....
    <form-beans>

    <form-bean name="HelloForm" type="org.struts.example.HelloForm">

    <form-property name="person" type="java.lang.String"/>
    </form-bean>
    </form-beans>
    <!-- =================================================== -->
    <action-mappings>

    <action path="/HelloWorld"
    type="org.struts.example.HelloAction"
    name="HelloForm"
    attribute="person"
    scope="request"
    validate="true">
    <forward name="success" path="/index.jsp"/>
    </action>

    </action-mappings>

    ....

    wo ist die Fehler ???

    Danke


Anmelden zum Antworten