<output id="qn6qe"></output>

    1. <output id="qn6qe"><tt id="qn6qe"></tt></output>
    2. <strike id="qn6qe"></strike>

      亚洲 日本 欧洲 欧美 视频,日韩中文字幕有码av,一本一道av中文字幕无码,国产线播放免费人成视频播放,人妻少妇偷人无码视频,日夜啪啪一区二区三区,国产尤物精品自在拍视频首页,久热这里只有精品12

      ssm框架常用依賴

      <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.offcn</groupId>
          <artifactId>hous</artifactId>
          <version>0.0.1-SNAPSHOT</version>
          <packaging>war</packaging>
          <properties>
              <!-- Spring版本號 -->
              <spring.version>4.3.8.RELEASE</spring.version>
          </properties>
          <dependencies>
              <!-- Spring相關包 -->
              <dependency>
                  <groupId>org.springframework</groupId>
                  <artifactId>spring-core</artifactId>
                  <version>${spring.version}</version>
              </dependency>
              <dependency>
                  <groupId>org.springframework</groupId>
                  <artifactId>spring-context</artifactId>
                  <version>${spring.version}</version>
              </dependency>
              <dependency>
                  <groupId>org.springframework</groupId>
                  <artifactId>spring-beans</artifactId>
                  <version>${spring.version}</version>
              </dependency>
              <dependency>
                  <groupId>org.springframework</groupId>
                  <artifactId>spring-context-support</artifactId>
                  <version>${spring.version}</version>
              </dependency>
              <dependency>
                  <groupId>org.springframework</groupId>
                  <artifactId>spring-expression</artifactId>
                  <version>${spring.version}</version>
              </dependency>
      
              <dependency>
                  <groupId>org.springframework</groupId>
                  <artifactId>spring-aop</artifactId>
                  <version>${spring.version}</version>
              </dependency>
              <dependency>
                  <groupId>org.springframework</groupId>
                  <artifactId>spring-web</artifactId>
                  <version>${spring.version}</version>
              </dependency>
              <dependency>
                  <groupId>org.springframework</groupId>
                  <artifactId>spring-webmvc</artifactId>
                  <version>${spring.version}</version>
              </dependency>
              <dependency>
                  <groupId>org.springframework</groupId>
                  <artifactId>spring-jdbc</artifactId>
                  <version>${spring.version}</version>
              </dependency>
              <dependency>
                  <groupId>org.springframework</groupId>
                  <artifactId>spring-tx</artifactId>
                  <version>${spring.version}</version>
              </dependency>
      
              <!-- AOP相關包 -->
              <dependency>
                  <groupId>org.aspectj</groupId>
                  <artifactId>aspectjrt</artifactId>
                  <version>1.8.0</version>
              </dependency>
              <dependency>
                  <groupId>org.aspectj</groupId>
                  <artifactId>aspectjweaver</artifactId>
                  <version>1.8.0</version>
              </dependency>
      
              <!-- MyBatis相關包 -->
              <dependency>
                  <groupId>org.mybatis</groupId>
                  <artifactId>mybatis</artifactId>
                  <version>3.3.0</version>
              </dependency>
              <!-- pagehelper -->
              <dependency>
                  <groupId>com.github.pagehelper</groupId>
                  <artifactId>pagehelper</artifactId>
                  <version>5.1.4</version>
              </dependency>
      
              <!-- MySQL相關包 -->
              <dependency>
                  <groupId>mysql</groupId>
                  <artifactId>mysql-connector-java</artifactId>
                  <version>5.1.26</version>
              </dependency>
              <!-- 數據庫連接池 -->
              <dependency>
                  <groupId>commons-dbcp</groupId>
                  <artifactId>commons-dbcp</artifactId>
                  <version>1.2.2</version>
              </dependency>
              <dependency>
                  <groupId>commons-pool</groupId>
                  <artifactId>commons-pool</artifactId>
                  <version>1.3</version>
              </dependency>
              <!-- Spring集成MyBatis -->
              <dependency>
                  <groupId>org.mybatis</groupId>
                  <artifactId>mybatis-spring</artifactId>
                  <version>1.2.3</version>
              </dependency>
      
              <!-- JSP標準標簽庫 -->
              <dependency>
                  <groupId>javax.servlet</groupId>
                  <artifactId>jstl</artifactId>
                  <version>1.2</version>
              </dependency>
              <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
              <dependency>
                  <groupId>javax.servlet</groupId>
                  <artifactId>javax.servlet-api</artifactId>
                  <version>3.0.1</version>
                  <scope>provided</scope>
              </dependency>
      
              <!-- 日志相關包 -->
              <dependency>
                  <groupId>log4j</groupId>
                  <artifactId>log4j</artifactId>
                  <version>1.2.17</version>
              </dependency>
              <dependency>
                  <groupId>org.slf4j</groupId>
                  <artifactId>slf4j-api</artifactId>
                  <version>1.7.21</version>
              </dependency>
              <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
              <dependency>
                  <groupId>com.fasterxml.jackson.core</groupId>
                  <artifactId>jackson-databind</artifactId>
                  <version>2.7.0</version>
              </dependency>
              <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations -->
              <dependency>
                  <groupId>com.fasterxml.jackson.core</groupId>
                  <artifactId>jackson-annotations</artifactId>
                  <version>2.7.0</version>
              </dependency>
              <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
              <dependency>
                  <groupId>com.fasterxml.jackson.core</groupId>
                  <artifactId>jackson-core</artifactId>
                  <version>2.7.0</version>
              </dependency>
      
              <!-- 單元測試相關包 -->
              <dependency>
                  <groupId>junit</groupId>
                  <artifactId>junit</artifactId>
                  <version>3.8.1</version>
                  <scope>test</scope>
              </dependency>
      
          </dependencies>
          <build>
              <sourceDirectory>src</sourceDirectory>
              <plugins>
                  <plugin>
                      <artifactId>maven-compiler-plugin</artifactId>
                      <version>3.7.0</version>
                      <configuration>
                          <source>1.8</source>
                          <target>1.8</target>
                      </configuration>
                  </plugin>
                  <plugin>
                      <artifactId>maven-war-plugin</artifactId>
                      <version>3.2.1</version>
                      <configuration>
                          <warSourceDirectory>WebContent</warSourceDirectory>
                      </configuration>
                  </plugin>
              </plugins>
          </build>
      </project>

       

      posted @ 2021-02-20 14:35  登風360  閱讀(59)  評論(0)    收藏  舉報
      主站蜘蛛池模板: 四虎成人精品在永久免费| 成人午夜视频在线| 91麻豆视频国产一区二区| 疯狂做受XXXX高潮国产| 99久久国产综合精品女图图等你| 中文国产日韩欧美二视频| 成年女人黄小视频| 狠狠色丁香婷婷综合尤物| 日韩精品一区二区三区激情| 99热精品国产三级在线观看| 国产精品色三级在线观看| 最新AV中文字幕无码专区| 久久高清超碰AV热热久久| 四虎影视永久在线精品| 99RE6在线观看国产精品| 蜜臀久久99精品久久久久久| 国产精品伦人一久二久三久| 国产精品一码在线播放| 国产男女猛烈无遮挡免费视频网址| 朝阳区| 临夏县| 人妻系列中文字幕精品| 真人性囗交视频| 亚洲一区二区三区久久综合| 国产乱码一区二区三区免费| 国产农村妇女高潮大叫| 成人拍拍拍无遮挡免费视频| 精品日韩色国产在线观看| 亚洲国产一区二区精品专| 无码国产69精品久久久久网站| 熟女性饥渴一区二区三区| 日本午夜精品一区二区三区电影| 成人永久性免费在线视频| 日本熟妇浓毛| 国产99青青成人A在线| 国产精品无码mv在线观看| 国产成人久久777777| 日本欧美一区二区三区在线播放 | 久久99国产精一区二区三区! | 国产女人叫床高潮大片| 亚洲欧美人成网站在线观看看 |