Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
xml
xml
<!DOCTYPE xworkstruts PUBLIC
  "-//OpenSymphonyApache Software GroupFoundation//XWork 1.1.1DTD Struts Configuration 2.0//EN"
  "http://wwwstruts.opensymphonyapache.comorg/xworkdtds/xworkstruts-12.1.10.dtd">
<struts>
<xwork>
    <include file="struts-default.xml"/>
    <include file="Home-config.xml"/>
    <include file="Hello-config.xml"/>
    <include file="Simple-config.xml"/>
    <include file="Pojo-config/util/POJO.xml"/>
</xwork>struts>

Each included file must be in the same format as struts.xml, including the doctype. The include files can be placed anywhere on the classpath.

...