Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
c1aac18b
Commit
c1aac18b
authored
Feb 15, 2017
by
季圣华
Browse files
删除目录WebRoot
parent
177828ce
Changes
1000
Show whitespace changes
Inline
Side-by-side
Too many changes to show.
To preserve performance only
20 of 1000+
files are displayed.
Plain diff
Email patch
WebRoot/WEB-INF/classes/spring/quartz-applicationContext.xml.xml
deleted
100644 → 0
View file @
177828ce
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<bean
name=
"reviseQuartzScheduler"
lazy-init=
"false"
autowire=
"no"
class=
"org.springframework.scheduling.quartz.SchedulerFactoryBean"
>
<property
name=
"triggers"
>
<list>
<ref
bean=
"scanFtpMovieTrigger"
/>
<!-- <ref bean="scanFtpMovieTrigger2" /> -->
<!-- <ref bean="scanFtpMovieTrigger3" /> -->
<!-- <ref bean="scanFtpMovieTrigger4" /> -->
</list>
</property>
</bean>
<!-- 扫描ftp节目任务 -->
<bean
id=
"scanFtpMovieTrigger"
class=
"org.springframework.scheduling.quartz.CronTriggerBean"
>
<property
name=
"jobDetail"
>
<ref
local=
"scanFtpMovieJob"
/>
</property>
<!-- 每天22点30分执行,时间配置格式: 秒 分 时 天 月 年-->
<property
name=
"cronExpression"
>
<value>
0 45 9,10,11,12 * * ?
</value>
</property>
</bean>
<bean
id=
"scanFtpMovieJob"
class=
"org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"
>
<property
name=
"targetObject"
>
<ref
bean=
"scanFtpMovieTask"
/>
</property>
<property
name=
"targetMethod"
>
<value>
timerTest
</value>
</property>
</bean>
<bean
id=
"scanFtpMovieTask"
class=
"com.jsh.action.demo.ChannelAction"
/>
</beans>
\ No newline at end of file
WebRoot/WEB-INF/classes/struts2/account-struts.xml
deleted
100644 → 0
View file @
177828ce
<?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>
<package
name=
"account"
namespace=
"/account"
extends=
"json-default"
>
<action
name=
"*"
class=
"accountAction"
method=
"{1}"
>
<result
type=
"json"
/>
</action>
</package>
</struts>
WebRoot/WEB-INF/classes/struts2/accountHead-struts.xml
deleted
100644 → 0
View file @
177828ce
<?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>
<package
name=
"accountHead"
namespace=
"/accountHead"
extends=
"json-default"
>
<action
name=
"*"
class=
"accountHeadAction"
method=
"{1}"
>
<result
type=
"json"
/>
</action>
</package>
</struts>
WebRoot/WEB-INF/classes/struts2/accountItem-struts.xml
deleted
100644 → 0
View file @
177828ce
<?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>
<package
name=
"accountItem"
namespace=
"/accountItem"
extends=
"json-default"
>
<action
name=
"*"
class=
"accountItemAction"
method=
"{1}"
>
<result
type=
"json"
/>
</action>
</package>
</struts>
WebRoot/WEB-INF/classes/struts2/app-struts.xml
deleted
100644 → 0
View file @
177828ce
<?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>
<package
name=
"app"
namespace=
"/app"
extends=
"json-default"
>
<action
name=
"*"
class=
"appAction"
method=
"{1}"
>
<result
type=
"json"
/>
</action>
</package>
</struts>
\ No newline at end of file
WebRoot/WEB-INF/classes/struts2/asset-struts.xml
deleted
100644 → 0
View file @
177828ce
<?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>
<package
name=
"asset"
namespace=
"/asset"
extends=
"json-default"
>
<action
name=
"*"
class=
"assetAction"
method=
"{1}"
>
<result
type=
"json"
/>
</action>
<!--导出资产为excel表格 -->
<action
name=
"exportExcel"
class=
"assetAction"
method=
"exportExcel"
>
<result
name=
"excel"
type=
"stream"
>
<param
name=
"contentType"
>
application/vnd.ms-excel
</param>
<param
name=
"inputName"
>
excelStream
</param>
<param
name=
"contentDisposition"
>
attachment;filename="${fileName}"
</param>
<param
name=
"bufferSize"
>
1024
</param>
</result>
</action>
<!--导出资产为excel表格 -->
<action
name=
"importExcel"
class=
"assetAction"
method=
"importExcel"
>
<result
name=
"excel"
type=
"stream"
>
<param
name=
"contentType"
>
application/vnd.ms-excel
</param>
<param
name=
"inputName"
>
excelStream
</param>
<param
name=
"contentDisposition"
>
attachment;filename="${fileName}"
</param>
<param
name=
"bufferSize"
>
1024
</param>
</result>
<result
name=
"success"
>
/pages/asset/asset.jsp
</result>
</action>
</package>
</struts>
\ No newline at end of file
WebRoot/WEB-INF/classes/struts2/assetname-struts.xml
deleted
100644 → 0
View file @
177828ce
<?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>
<package
name=
"assetname"
namespace=
"/assetname"
extends=
"json-default"
>
<action
name=
"*"
class=
"assetNameAction"
method=
"{1}"
>
<result
type=
"json"
/>
</action>
</package>
</struts>
\ No newline at end of file
WebRoot/WEB-INF/classes/struts2/category-struts.xml
deleted
100644 → 0
View file @
177828ce
<?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>
<package
name=
"category"
namespace=
"/category"
extends=
"json-default"
>
<action
name=
"*"
class=
"categoryAction"
method=
"{1}"
>
<result
type=
"json"
/>
</action>
</package>
</struts>
\ No newline at end of file
WebRoot/WEB-INF/classes/struts2/channel-struts.xml
deleted
100644 → 0
View file @
177828ce
<?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>
WebRoot/WEB-INF/classes/struts2/depot-struts.xml
deleted
100644 → 0
View file @
177828ce
<?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>
<package
name=
"depot"
namespace=
"/depot"
extends=
"json-default"
>
<action
name=
"*"
class=
"depotAction"
method=
"{1}"
>
<result
type=
"json"
/>
</action>
</package>
</struts>
\ No newline at end of file
WebRoot/WEB-INF/classes/struts2/depotHead-struts.xml
deleted
100644 → 0
View file @
177828ce
<?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>
<package
name=
"depotHead"
namespace=
"/depotHead"
extends=
"json-default"
>
<action
name=
"*"
class=
"depotHeadAction"
method=
"{1}"
>
<result
type=
"json"
/>
</action>
</package>
</struts>
\ No newline at end of file
WebRoot/WEB-INF/classes/struts2/depotItem-struts.xml
deleted
100644 → 0
View file @
177828ce
<?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>
<package
name=
"depotItem"
namespace=
"/depotItem"
extends=
"json-default"
>
<action
name=
"*"
class=
"depotItemAction"
method=
"{1}"
>
<result
type=
"json"
/>
</action>
<!--导出为excel表格 -->
<action
name=
"exportExcel"
class=
"depotItemAction"
method=
"exportExcel"
>
<result
name=
"excel"
type=
"stream"
>
<param
name=
"contentType"
>
application/vnd.ms-excel
</param>
<param
name=
"inputName"
>
excelStream
</param>
<param
name=
"contentDisposition"
>
attachment;filename="${fileName}"
</param>
<param
name=
"bufferSize"
>
1024
</param>
</result>
</action>
</package>
</struts>
\ No newline at end of file
WebRoot/WEB-INF/classes/struts2/functions-struts.xml
deleted
100644 → 0
View file @
177828ce
<?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>
<package
name=
"functions"
namespace=
"/functions"
extends=
"json-default"
>
<action
name=
"*"
class=
"functionsAction"
method=
"{1}"
>
<result
type=
"json"
/>
</action>
</package>
</struts>
\ No newline at end of file
WebRoot/WEB-INF/classes/struts2/inOutItem-struts.xml
deleted
100644 → 0
View file @
177828ce
<?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>
<package
name=
"inOutItem"
namespace=
"/inOutItem"
extends=
"json-default"
>
<action
name=
"*"
class=
"inOutItemAction"
method=
"{1}"
>
<result
type=
"json"
/>
</action>
</package>
</struts>
WebRoot/WEB-INF/classes/struts2/log-struts.xml
deleted
100644 → 0
View file @
177828ce
<?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>
<package
name=
"log"
namespace=
"/log"
extends=
"json-default"
>
<action
name=
"*"
class=
"logAction"
method=
"{1}"
>
<result
type=
"json"
/>
</action>
</package>
</struts>
\ No newline at end of file
WebRoot/WEB-INF/classes/struts2/material-struts.xml
deleted
100644 → 0
View file @
177828ce
<?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>
<package
name=
"material"
namespace=
"/material"
extends=
"json-default"
>
<action
name=
"*"
class=
"materialAction"
method=
"{1}"
>
<result
type=
"json"
/>
</action>
</package>
</struts>
\ No newline at end of file
WebRoot/WEB-INF/classes/struts2/materialCategory-struts.xml
deleted
100644 → 0
View file @
177828ce
<?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>
<package
name=
"materialCategory"
namespace=
"/materialCategory"
extends=
"json-default"
>
<action
name=
"*"
class=
"materialCategoryAction"
method=
"{1}"
>
<result
type=
"json"
/>
</action>
</package>
</struts>
\ No newline at end of file
WebRoot/WEB-INF/classes/struts2/person-struts.xml
deleted
100644 → 0
View file @
177828ce
<?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>
<package
name=
"person"
namespace=
"/person"
extends=
"json-default"
>
<action
name=
"*"
class=
"personAction"
method=
"{1}"
>
<result
type=
"json"
/>
</action>
</package>
</struts>
\ No newline at end of file
WebRoot/WEB-INF/classes/struts2/report-struts.xml
deleted
100644 → 0
View file @
177828ce
<?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>
<package
name=
"report"
namespace=
"/report"
extends=
"json-default"
>
<action
name=
"*"
class=
"reportAction"
method=
"{1}"
>
<result
type=
"json"
/>
</action>
</package>
</struts>
\ No newline at end of file
WebRoot/WEB-INF/classes/struts2/role-struts.xml
deleted
100644 → 0
View file @
177828ce
<?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>
<package
name=
"role"
namespace=
"/role"
extends=
"json-default"
>
<action
name=
"*"
class=
"roleAction"
method=
"{1}"
>
<result
type=
"json"
/>
</action>
</package>
</struts>
\ No newline at end of file
Prev
1
…
8
9
10
11
12
13
14
15
16
…
50
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment