提交 ed31081b 编写于 作者: Skyeye云's avatar Skyeye云

配置文件修改

上级 ee708ff4
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
<attribute name="maven.pomderived" value="true"/> <attribute name="maven.pomderived" value="true"/>
</attributes> </attributes>
</classpathentry> </classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jre7">
<attributes> <attributes>
<attribute name="maven.pomderived" value="true"/> <attribute name="maven.pomderived" value="true"/>
</attributes> </attributes>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
<attribute name="maven.pomderived" value="true"/> <attribute name="maven.pomderived" value="true"/>
</attributes> </attributes>
</classpathentry> </classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jre7">
<attributes> <attributes>
<attribute name="maven.pomderived" value="true"/> <attribute name="maven.pomderived" value="true"/>
</attributes> </attributes>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
<attribute name="maven.pomderived" value="true"/> <attribute name="maven.pomderived" value="true"/>
</attributes> </attributes>
</classpathentry> </classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jre7">
<attributes> <attributes>
<attribute name="maven.pomderived" value="true"/> <attribute name="maven.pomderived" value="true"/>
</attributes> </attributes>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
<attribute name="maven.pomderived" value="true"/> <attribute name="maven.pomderived" value="true"/>
</attributes> </attributes>
</classpathentry> </classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jre7">
<attributes> <attributes>
<attribute name="maven.pomderived" value="true"/> <attribute name="maven.pomderived" value="true"/>
</attributes> </attributes>
......
...@@ -2,4 +2,10 @@ jdbc.driver=com.mysql.jdbc.Driver ...@@ -2,4 +2,10 @@ jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/eve?characterEncoding=utf-8 jdbc.url=jdbc:mysql://localhost:3306/eve?characterEncoding=utf-8
jdbc.username=root jdbc.username=root
jdbc.password=admin jdbc.password=admin
validationQuery=SELECT 1 validationQuery=SELECT 1
\ No newline at end of file
jdbc.maxActive=10
jdbc.minIdle=5
jdbc.poolPreparedStatements=true
jdbc.maxWait=60000
jdbc.maxPoolPreparedStatementPerConnectionSize=33
\ No newline at end of file
...@@ -18,12 +18,12 @@ ...@@ -18,12 +18,12 @@
<property name="username" value="${jdbc.username}" /> <property name="username" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" /> <property name="password" value="${jdbc.password}" />
<property name="driverClassName" value="${jdbc.driver}" /> <property name="driverClassName" value="${jdbc.driver}" />
<property name="maxActive" value="10" /> <property name="maxActive" value="${jdbc.maxActive}" />
<property name="minIdle" value="5" /> <property name="minIdle" value="${jdbc.minIdle}" />
<!-- 获取连接最大等待时间 --> <!-- 获取连接最大等待时间 -->
<property name="maxWait" value="60000" /> <property name="maxWait" value="${jdbc.maxWait}" />
<property name="poolPreparedStatements" value="true" /> <property name="poolPreparedStatements" value="${jdbc.poolPreparedStatements}" />
<property name="maxPoolPreparedStatementPerConnectionSize" value="33" /> <property name="maxPoolPreparedStatementPerConnectionSize" value="${jdbc.maxPoolPreparedStatementPerConnectionSize}" />
<!-- 用来检测有效sql --> <!-- 用来检测有效sql -->
<property name="validationQuery" value="${validationQuery}" /> <property name="validationQuery" value="${validationQuery}" />
<property name="testOnBorrow" value="false" /> <property name="testOnBorrow" value="false" />
......
...@@ -58,6 +58,7 @@ ...@@ -58,6 +58,7 @@
data: { nihaoa: '' } data: { nihaoa: '' }
}, //可以为{} 默认 请求 json/desktopmenu.json }, //可以为{} 默认 请求 json/desktopmenu.json
done: function (desktopApp) { done: function (desktopApp) {
console.log(desktopApp);
desktopApp.ondblclick(function (id, elem) { desktopApp.ondblclick(function (id, elem) {
OpenWindow(elem); OpenWindow(elem);
}); });
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册