* BAEL-524 Building an MVC application using Struts 2 * BAEL-524 Building an MVC application using Struts 2 * BAEL-524 Building an MVC application using Struts 2
12 lines
437 B
XML
12 lines
437 B
XML
<?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>
|
|
<package name="tutorial" extends="struts-default" namespace="/tutorial">
|
|
<action name="car" class="com.baeldung.struts.CarAction"
|
|
method="execute">
|
|
<result name="success">/result.jsp</result>
|
|
</action>
|
|
</package>
|
|
</struts> |