Merge remote-tracking branch 'origin/master'

master
e 2018-11-26 09:37:42 +08:00
commit e92fa1f94d
2 changed files with 42 additions and 34 deletions

View File

@ -1,6 +1,6 @@
QQ交流群335607153
测试系统地址http://218.5.177.99/wmstest 用户名test 密码123456
测试系统地址http://www.jeewms.cn/wmstest 用户名test 密码123456
android app也已经开源近期更新会比较频繁 app开源地址https://gitee.com/erzhongxmu/jeewmsapp
大家看到了star一下谢谢本团队会持续更新一直开源
欢迎喜欢的朋友一起来优化功能。
@ -34,7 +34,8 @@ android app也已经开源近期更新会比较频繁 app开源地址https
Mysql5.6以上linux 注意设置大小写不敏感)
运行环境CENTOS6.5以上或windows server 2008、tomcat7以上JDK1.8 MYSQL5.7
2按照mvn方式导入
3数据库还原步骤 1还原数据库2修改 dbconfig.properties
3数据库还原步骤 1还原数据库2修改 dbconfig.ties
3.1 sql导入方式建议 将sql文件粘贴至 查询执行窗口 执行
4IDEAtomcat7:tun 输入用户名和密码admin llg123
5、主要技术
开发语言JAVA。
@ -43,7 +44,7 @@ android app也已经开源近期更新会比较频繁 app开源地址https
四、技术支持:
演示环境http://218.5.177.99/wmstest 用户: test 密码123456
演示环境http://www.jeewms.cn/wmstest 用户: test 密码123456
QQ群335607153
五、版本管理及更新说明:
@ -65,7 +66,7 @@ android app也已经开源近期更新会比较频繁 app开源地址https
1、开源说明本项目完全遵循GPL V3协议。
如果你喜欢我们的产品, 可以放心从我们的开源版开始使用, 在产品商业化的支持下同时我们会尽最大的努力维护开源版的稳定。
后期在不影响公司业务的前提下, 会逐步开放更多的信息化平台。在此期间,如果你发现产品有任何Bug, 请在Issue模块向我们反馈谢谢。
2、商务合作本项目同时支持开源版实施和定制开发服务商务合作请 统一联系 QQ22663889
2、商务合作本项目同时支持开源版实施和定制开发服务商务合作请 统一联系 QQ290813851
# 问题&BUG&建议请在此提交https://gitee.com/erzhongxmu/jeewms/issues
![主页](https://images.gitee.com/uploads/images/2018/1014/235739_2c29bbbf_544004.png "wmshome.png")

View File

@ -1,38 +1,45 @@
<?xml version="1.0" encoding="UTF-8"?>
<ehcache updateCheck="false">
<diskStore path="java.io.tmpdir" />
<diskStore path="java.io.tmpdir"/>
<!-- Cluster localhost setting -->
<cacheManagerPeerProviderFactory
class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory"
properties="peerDiscovery=automatic, multicastGroupAddress=230.0.0.1,
multicastGroupPort=4446, timeToLive=32"/>
<cacheManagerPeerListenerFactory
class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory"
properties="hostName=localhost, port=40001,socketTimeoutMillis=2000" />
<!-- Cluster localhost setting -->
<!--<cacheManagerPeerProviderFactory-->
<!--class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory"-->
<!--properties="peerDiscovery=automatic, multicastGroupAddress=230.0.0.1,-->
<!--multicastGroupPort=4446, timeToLive=32"/>-->
<cacheManagerPeerProviderFactory
class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory"
properties="peerDiscovery=automatic,
hostName=localhost,
multicastGroupAddress=230.0.0.1,
multicastGroupPort=4446, timeToLive=1"/>
<cacheManagerPeerListenerFactory
class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory"
properties="hostName=localhost, port=40001,socketTimeoutMillis=2000"/>
<cache name="dictCache" maxElementsInMemory="500" overflowToDisk="true"
eternal="true">
<cacheEventListenerFactory
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
properties="replicatePuts=false,replicateUpdatesViaCopy=false" />
</cache>
<cache name="dictCache" maxElementsInMemory="500" overflowToDisk="true"
eternal="true">
<cacheEventListenerFactory
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
properties="replicatePuts=false,replicateUpdatesViaCopy=false"/>
</cache>
<cache name="eternalCache" maxElementsInMemory="500"
overflowToDisk="true" eternal="false" timeToIdleSeconds="1200"
timeToLiveSeconds="1200">
<cacheEventListenerFactory
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
properties="replicatePuts=false,replicateUpdatesViaCopy=false" />
</cache>
<!-- DefaultCache setting. Modify ehcache-safe.xml for timeToIdleSeconds,timeToLiveSecond,diskExpiryThreadIntervalSeconds
Use ehcache-safe.xml default for maxElementsInMemory,maxElementsOnDisk,overflowToDisk,eternal
Use ehcache default for memoryStoreEvictionPolicy,diskPersistent,. -->
<defaultCache maxElementsInMemory="10000" overflowToDisk="true"
eternal="false" memoryStoreEvictionPolicy="LRU" maxElementsOnDisk="10000000"
diskExpiryThreadIntervalSeconds="600" timeToIdleSeconds="3600"
timeToLiveSeconds="100000" diskPersistent="false" />
<cache name="eternalCache" maxElementsInMemory="500"
overflowToDisk="true" eternal="false" timeToIdleSeconds="1200"
timeToLiveSeconds="1200">
<cacheEventListenerFactory
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
properties="replicatePuts=false,replicateUpdatesViaCopy=false"/>
</cache>
<!-- DefaultCache setting. Modify ehcache-safe.xml for timeToIdleSeconds,timeToLiveSecond,diskExpiryThreadIntervalSeconds
Use ehcache-safe.xml default for maxElementsInMemory,maxElementsOnDisk,overflowToDisk,eternal
Use ehcache default for memoryStoreEvictionPolicy,diskPersistent,. -->
<defaultCache maxElementsInMemory="10000" overflowToDisk="true"
eternal="false" memoryStoreEvictionPolicy="LRU" maxElementsOnDisk="10000000"
diskExpiryThreadIntervalSeconds="600" timeToIdleSeconds="3600"
timeToLiveSeconds="100000" diskPersistent="false"/>
</ehcache>