Skip to content

Commit

Permalink
修改提交
Browse files Browse the repository at this point in the history
  • Loading branch information
genius115 committed May 11, 2019
1 parent d0ebe4e commit 832a103
Show file tree
Hide file tree
Showing 10 changed files with 39 additions and 236 deletions.
6 changes: 5 additions & 1 deletion .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/classes" path="src/main/resources"/>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
Expand Down
6 changes: 3 additions & 3 deletions .project
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<name>org.springframework.ide.eclipse.core.springbuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.springframework.ide.eclipse.core.springbuilder</name>
<name>org.springframework.ide.eclipse.boot.validation.springbootbuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.springframework.ide.eclipse.boot.validation.springbootbuilder</name>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
Expand Down
1 change: 1 addition & 0 deletions .settings/org.eclipse.core.resources.prefs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
eclipse.preferences.version=1
encoding//src/main/java=UTF-8
encoding//src/main/resources=UTF-8
encoding//src/main/webapp/WEB-INF/error.jsp=UTF-8
encoding//src/test/java=UTF-8
encoding//src/test/resources=UTF-8
Expand Down
15 changes: 14 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,15 @@
<spring.version>4.3.8.RELEASE</spring.version>
<hibernate.version>5.1.7.Final</hibernate.version>
<shiro.version>1.2.3</shiro.version>
<itext.version>5.5.9</itext.version>
</properties>
<repositories>
<repository>
<id>iText Repository</id>
<name>iText Repository-releases</name>
<url>https://repo.itextsupport.com/releases</url>
</repository>
</repositories>
<dependencies>
<!-- Junit依赖 -->
<dependency>
Expand Down Expand Up @@ -184,7 +192,12 @@
<artifactId>HikariCP-java6</artifactId>
<version>2.3.13</version>
</dependency> -->

<!-- itext5 -->
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>${itext.version}</version>
</dependency>
</dependencies>

<build>
Expand Down
1 change: 1 addition & 0 deletions src/main/java/springBeanTest/HikariDemo.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public static void main(String[] args) {
hikariConfig.addDataSourceProperty("prepStmtCacheSize", "250");
hikariConfig.addDataSourceProperty("prepStmtCacheSqlLimit", "2048");


HikariDataSource ds = new HikariDataSource(hikariConfig);
Connection conn = null;
Statement statement = null;
Expand Down
Binary file modified target/classes/springBeanTest/HikariDemo.class
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Generated by Maven Integration for Eclipse
#Wed Apr 03 18:35:10 CST 2019
#Sat May 11 09:48:43 CST 2019
version=0.0.1-SNAPSHOT
groupId=com.genius
m2e.projectName=ssh-platform
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,15 @@
<spring.version>4.3.8.RELEASE</spring.version>
<hibernate.version>5.1.7.Final</hibernate.version>
<shiro.version>1.2.3</shiro.version>
<itext.version>5.5.9</itext.version>
</properties>
<repositories>
<repository>
<id>iText Repository</id>
<name>iText Repository-releases</name>
<url>https://repo.itextsupport.com/releases</url>
</repository>
</repositories>
<dependencies>
<!-- Junit依赖 -->
<dependency>
Expand Down Expand Up @@ -184,7 +192,12 @@
<artifactId>HikariCP-java6</artifactId>
<version>2.3.13</version>
</dependency> -->

<!-- itext5 -->
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>${itext.version}</version>
</dependency>
</dependencies>

<build>
Expand Down

This file was deleted.

This file was deleted.

0 comments on commit 832a103

Please sign in to comment.