idea下maven聚合專案建立
♦建立queen-parent工程
點選File ->New->Module…,建立maven專案
♦點選Next,填寫組織名稱和專案名稱,以及版本號(GAV)
♦點選Next
♦點選Next,父工程最後一步,給Module取名及選擇工作目錄
♦點選Finish,完成
♦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.queen.parent</groupId>
<artifactId>queen-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<!-- 集中定義依賴版本號 -->
<properties>
<junit.version> 4.10</junit.version>
<spring.version>4.1.3.RELEASE</spring.version>
<mybatis.version>3.2.8</mybatis.version>
<mybatis.spring.version>1.2.2</mybatis.spring.version>
<mybatis.paginator.version>1.2.15</mybatis.paginator.version>
<mysql.version >5.1.32</mysql.version>
<slf4j.version>1.6.4</slf4j.version>
<jackson.version>2.4.2</jackson.version>
<druid.version>1.0.9</druid.version>
<httpclient.version>4.3.5</httpclient.version>
<jstl.version>1.2</jstl.version>
<servlet-api.version>2.5</servlet-api.version>
<jsp-api.version>2.0</jsp-api.version>
<joda-time.version>2.5</joda-time.version>
<commons-lang3.version>3.3.2</commons-lang3.version>
<commons-io.version>1.3.2</commons-io.version>
</properties>
<dependencyManagement>
<dependencies>
<!-- 單元測試 -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!-- Spring -->
<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-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-aspects</artifactId>
<version>${spring.version}</version>
</dependency>
<!-- Mybatis -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>${mybatis.version}</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>${mybatis.spring.version}</version>
</dependency>
<!-- 分頁助手 -->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>3.7.5</version>
</dependency>
<dependency>
<groupId>com.github.jsqlparser</groupId>
<artifactId>jsqlparser</artifactId>
<version>0.9.1</version>
</dependency>
<!-- 通用Mapper -->
<dependency>
<groupId>com.github.abel533</groupId>
<artifactId>mapper</artifactId>
<version>2.3.4</version>
</dependency>
<!-- MySql -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!-- Jackson Json處理工具包 -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<!-- 連線池 -->
<dependency>
<groupId>com.jolbox</groupId>
<artifactId>bonecp-spring</artifactId>
<version>0.8.0.RELEASE</version>
</dependency>
<!-- httpclient -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${httpclient.version}</version>
</dependency>
<!-- JSP相關 -->
<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>${jstl.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>${servlet-api.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jsp-api</artifactId>
<version>${jsp-api.version}</version>
<scope>provided</scope>
</dependency>
<!-- 時間操作元件 -->
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>${joda-time.version}</version>
</dependency>
<!-- Apache工具元件 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<!-- 資原始檔拷貝外掛 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.7</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<!-- java編譯外掛 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!-- 配置Tomcat外掛 -->
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
注意:專案的打包方式為pom
♦建立公用工程queen-common
點選File->New->Module…,進入以下介面,請按照下圖紅色框框進行選中♦點選Next
♦點選Next
♦點選Next
點選Finish,建立成功
♦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.queen.common</groupId>
<artifactId>queen-common</artifactId>
<parent>
<groupId>com.queen.parent</groupId>
<artifactId>queen-parent</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
</project>
注意:專案的打包方式為jar和父專案有所不同
♦建立queen-manage
跟前面建立queen-parent步驟類似,就不再贅述了,注意:下面打包方式為pom
♦點選Finish,建立成功
pom檔案如下
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=
相關推薦
idea下maven聚合專案建立
♦建立queen-parent工程點選File ->New->Module…,建立maven專案♦點選Next,填寫組織名稱和專案名稱,以及版本號(GAV)♦點選Next♦點選Next,父工程最後一步,給Module取名及選擇工作目錄♦點選Finish,完成♦Po
Maven 聚合專案建立
第一步:建立父工程 右擊空白處,new 建立新的 maven 工程 這裡跳過預設的骨架,使用自動義的骨架 這裡父工程必須使用pom打包方式 第二步:建立子工程 右擊空白處,new建立新maven工程 跳
idea中maven聚合專案的Module變灰的可能原因
在使用idea的過程中,遇到其中一個maven模組變成灰色,如下所示: 造成這個的原因可能是忽略了maven模組,可以嘗試如下解決方法:在idea中maven的setting中找到ignored
IntelliJ IDEA下 Maven 建立 Scala 專案,執行hello world
建立Maven Scala專案 https://blog.csdn.net/qq_1290259791/article/details/79052584 IntelliJ IDEA 中 右鍵新建(new)時,選項沒有scala(java) class的解決方法和具體解釋 https://
idea給現有web專案建立子maven web模組專案--搭建流程(以淘淘商城為例)
maven web專案主要搭建流程: 1、用任意Java開發工具ide中maven外掛(或其他外掛)建立父子web專案骨架 2、完善web專案的目錄結構(如果以下骨架已自動建好,忽略此步驟) src/main/java src/main/
IDEA下maven編譯打包Java專案成jar包但是resource下配置檔案打包不成功
今天在IDEA下打包一個Java專案,準備打包成jar包直接執行,打包之後執行時候一直提示resource下資原始檔找不到,但我又確實配置了的,而且在IDEA上可以執行,但是打包成jar包之後就執行不了了。 後來百度,發現對於resource下檔案(prope
IDEA下Maven專案中使用Mybatis及Mybatis Generator
寫在前面: 前面在《前後端分離的思考》的一文中提到又有一門課要開始寫大作業了,在初步理解了需求了之後,專案準備採用Maven+Mybatis+Mysql+SpringMVC+Vue.js的架構。採用Maven解決依賴管理問題十分方便(貌似gradle後來者居上,更方便了)。
idea使用maven-archetype-webapp建立多模組專案無java資料夾和resources資料夾
1.原始專案結構圖 2.建立新的子專案,右鍵model->new model,選中create from archetype 3.填寫專案相關資訊 4.系統根據模板生成相應的資料夾 5.觀察圖片發現缺少java和resources資
IDEA下Maven專案整合Spring和MyBatis出現jdbc.properties is invalid;前言中不允許有內容
在Idea下用Maven管理Spring和MyBatis整合的專案,在Junit測試service層程式碼時不會出錯,但把整個專案釋出到Tomcat時丟擲各種各樣的異常,花了最多時間的異常為: o
IntelliJ IDEA下Maven控制臺出現中文亂碼問題解決
image 中文 int idea 亂碼 出現 src intellij pos Setting->maven->runner: VMoptions: -Dfile.encoding=GB2312 不一定有效,要不斷的嘗試。IntelliJ IDEA下M
Idea下Maven的使用
pro bce HR art 網絡 tle 幾分鐘 點擊 jin 一、導入maven結構的web工程 (1)在Intellij IDEA中選擇File->New->Project from Version Control->Subversion。 在
idea下maven項目增加依賴項目裏面沒有添加相關依賴jar
問題 AR 相關 god pom.xml 添加 管理 XML nag 困擾了一晚上的問題,一般在pom.xml中增加了相關依賴,idea會自動將依賴的Jar包增加到maven項目中,但是在pom.xml中增加了依賴,項目中並沒有 偶然打開idea的側邊欄maven工
maven聚合專案搭建,簡單的SpringBoot整合
1、new Maven project ,第一行 create a .... 打鉤 2、專案結構如下圖,可以刪除src,只保留pom 3、右鍵該專案,new project 選擇maven model 點選next,填寫model 那麼
idea下maven打包
方式一: 1、idea中.file →Project Structure(快捷鍵Ctrl+Shift+Alt+S)選擇Artifacts,點選加號,選擇WebApplication:Archive Empty會生成一個空內容自由配置.預設第二個會自動配置 2、生成後在w
IDEA下maven工程的classpath
IDEA開發maven專案,此工程的classpath就是指src/main/java,src/main/resources,src/main/webapp,假如在main資料夾下新建一個檔案properties,那麼classpath在原有三個檔案的基礎上又多了一個src/main/proper
國慶來個maven父子專案建立
Maven是一個非常實用的專案管理結構,自己也實用maven開發許久,但是還沒有真正自己建立一個父子專案來實踐實踐,國慶假期歸來,閒來無事自己動手建立一個試一試, 環境:eclipse+maven3.3+JDK7 1、建立父親專案。 2、兩個按鈕都要選擇,建立一個簡單的專案結構
idea 下 maven clean package的時候。。。。找不到符號的問題。
idea將外部的jar包打入到裡面的時候,只需要在module中配置即可。所以我的jar包究竟到了哪裡,我沒有深入去研究這個東西,我只知道jar包在maven打包的時候,並沒有一起打進去,導致找不到符號之類的錯誤。 解決: 1.在任意目錄下面建立lib(其他的名字也可以)
idea下maven開發與生產環境配置切換
idea手動切換開發與生產環境 一、maven配置開發與生產環境 <profiles> <profile> <id>dev</id> <propert
IDEA下maven的mapper.xml檔案路徑改為resources資料夾下
在IDEA下建立maven專案時, 使用SSM框架,需要把mapper.xml 檔案放在resources資料夾下,這樣target資料夾才有mapper.xml檔案,否則是沒有的. 相關配置檔案: application-dao.xml <beans
在IDEA的maven web專案中如何設定自己的本地倉庫
在建立maven專案中如何不使用系統指定的本地倉庫,而使用自己設定的倉庫 步驟一:去官網下載apache-maven然後進行解壓。 步驟二:解壓之後在解壓檔案下的conf資料夾裡面找到setting.