| 组织ID: |
com.github.shicloud |
| 项目ID: |
simple-jdbc-templete |
| 版本: |
1.0.2 |
| 最后修改时间: |
2019-09-12 08:22:41 |
| 包类型: |
jar |
| 标题: |
simple-jdbc-templete |
| 描述: |
include reflect,byte and other utils |
| 相关URL: |
https://github.com/ShiCloud/simple-jdbc-templete |
| 大小: |
16.95KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.github.shicloud</groupId>
<artifactId>simple-jdbc-templete</artifactId>
<version>1.0.2</version>
</dependency>
|
| Gradle引入代码: |
com.github.shicloud:simple-jdbc-templete:1.0.2
|
| 下载Jar包: |
|
| POM文件内容: |
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.shicloud</groupId>
<artifactId>simple-jdbc-templete</artifactId>
<version>1.0.2</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<spring.version>1.5.17.RELEASE</spring.version>
<jdbc.driver.version>5.1.35</jdbc.driver.version>
</properties>
<name>simple-jdbc-templete</name>
<description>include reflect,byte and other utils</description>
<url>https://github.com/ShiCloud/simple-jdbc-templete</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<url>https://github.com/ShiCloud/simple-jdbc-templete</url>
<connection>scm:git:https://github.com/ShiCloud/simple-jdbc-templete.git</connection>
<developerConnection>https://github.com/ShiCloud/simple-jdbc-templete</developerConnection>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<name>shicloud</name>
<email>sfiloveyou@126.com</email>
</developer>
</developers>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- Source -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- GPG -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>sonatype</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>com.github.shicloud</groupId>
<artifactId>common-utils</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${jdbc.driver.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>${spring.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
com.github.shicloud.jdbc.annotation.ID$TYPE.class
com.github.shicloud.jdbc.annotation.ID.class
com.github.shicloud.jdbc.annotation.Prefix.class
com.github.shicloud.jdbc.annotation.Suffix.class
com.github.shicloud.jdbc.exception.NoIdAnnotationFoundException.class
com.github.shicloud.jdbc.templete.JdbcTemplateTool.class
com.github.shicloud.jdbc.templete.ReturnIdPreparedStatementCreator.class
com.github.shicloud.jdbc.templete.SqlParamsPairs.class
com.github.shicloud.jdbc.utils.IdUtil.class
com.github.shicloud.jdbc.utils.ModelSqlUtil.class
META-INF/maven/com.github.shicloud/simple-jdbc-templete/pom.xml
META-INF/maven/com.github.shicloud/simple-jdbc-templete/pom.properties
|
| 依赖Jar: |
persistence-api-1.0.jar
/javax.persistence/persistence-api/1.0
查看persistence-api所有版本文件
common-utils-1.0.1.jar
/com.github.shicloud/common-utils/1.0.1
查看common-utils所有版本文件
mysql-connector-java-${jdbc.driver.version}.jar
/mysql/mysql-connector-java/${jdbc.driver.version}
查看mysql-connector-java所有版本文件
spring-boot-starter-jdbc-${spring.version}.jar
/org.springframework.boot/spring-boot-starter-jdbc/${spring.version}
查看spring-boot-starter-jdbc所有版本文件
spring-boot-starter-test-${spring.version}.jar
/org.springframework.boot/spring-boot-starter-test/${spring.version}
查看spring-boot-starter-test所有版本文件
|