14 lines
584 B
XML
14 lines
584 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!DOCTYPE struts PUBLIC
|
|
"-//Apache Software Foundation//DTD Struts Configuration 2.1.7//EN"
|
|
"http://struts.apache.org/dtds/struts-2.1.7.dtd">
|
|
<struts>
|
|
<!-- 国际化配置文件 各个模块使用","隔开 -->
|
|
<!-- <constant name="struts.custom.i18n.resources" value="config.i18n.frame_resources" /> -->
|
|
<package name="channel" namespace="/channel" extends="struts-default">
|
|
<action name="*" class="com.jsh.action.demo.ChannelAction" method="{1}">
|
|
<!-- <result type="json"></result> -->
|
|
</action>
|
|
</package>
|
|
</struts>
|