SAE使用小结

1.部署了个DEMO,结果出错,查了下原因:用了一个commons-validator的组件,而这个组件包含了一个xml-apis的包,删掉就OK了。

2.连接mysql:

url为jdbc:mysql://w.rdc.sae.sina.com.cn:3307/app_你的应用名称(2级域名的那个)

user为accesskey

password为secretkey(汇总信息栏中寻找)

3.DBCP数据库连接池配置如下:

<propertyname="maxWait"value="1000"/>

<propertyname="initialSize"value="5"/>

<propertyname="maxActive"value="20"/>

<propertyname="maxIdle"value="5"/>

<propertyname="testWhileIdle"value="true"/>

<propertyname="timeBetweenEvictionRunsMillis"value="15000"/>

<propertyname="numTestsPerEvictionRun"value="20"/>

<propertyname="validationQuery"value="SELECT1FROMDUAL"/>

<propertyname="removeAbandoned"value="true"/>

<propertyname="removeAbandonedTimeout"value="180"/>

平时就配置这几个参数,竟然报错:

initialSize=1

maxActive=100

maxIdle=8

minIdle=1

这个有空研究下。

相关推荐