共計(jì) 2791 個(gè)字符,預(yù)計(jì)需要花費(fèi) 7 分鐘才能閱讀完成。
本篇內(nèi)容介紹了“spring maven 開(kāi)發(fā)包怎么調(diào)試”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓丸趣 TV 小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
dependencies
!-- ************* 開(kāi)發(fā)調(diào)試相關(guān)的包 ******************************* --
!-- hibernate 核心包 --
dependency
groupId org.hibernate /groupId
artifactId hibernate-core /artifactId
version 4.2.10.Final /version
/dependency
!-- 數(shù)據(jù)源包 --
dependency
groupId commons-dbcp /groupId
artifactId commons-dbcp /artifactId
version 1.4 /version
/dependency
!-- postgresql 數(shù)據(jù)庫(kù)驅(qū)動(dòng) --
dependency
groupId org.postgresql /groupId
artifactId postgresql /artifactId
version 9.2-1003-jdbc3 /version
/dependency
!-- spring 核心包 --
dependency
groupId org.springframework /groupId
artifactId spring-core /artifactId
version 3.2.2.RELEASE /version
/dependency
!-- spring 上下文加載包 --
dependency
groupId org.springframework /groupId
artifactId spring-context /artifactId
version 3.2.2.RELEASE /version
/dependency
!-- spring 中的操作 bin 的包 --
dependency
groupId org.springframework /groupId
artifactId spring-beans /artifactId
version 3.2.2.RELEASE /version
/dependency
!-- 面向切面的包 --
dependency
groupId org.springframework /groupId
artifactId spring-aop /artifactId
version 3.2.2.RELEASE /version
/dependency
!-- 關(guān)系對(duì)象模型映射包 --
dependency
groupId org.springframework /groupId
artifactId spring-orm /artifactId
version 3.2.2.RELEASE /version
/dependency
!-- spring 與 web 相關(guān)的包 --
dependency
groupId org.springframework /groupId
artifactId spring-web /artifactId
version 3.2.2.RELEASE /version
/dependency
!-- spring mvc 開(kāi)發(fā)相關(guān)的包 --
dependency
groupId org.springframework /groupId
artifactId spring-webmvc /artifactId
version 3.2.2.RELEASE /version
scope compile /scope
/dependency
!-- spring 事務(wù)包 --
dependency
groupId org.springframework /groupId
artifactId spring-tx /artifactId
version 3.2.2.RELEASE /version
/dependency
!-- injectz 注入標(biāo)簽 --
dependency
groupId com.kenai.nbpwr /groupId
artifactId javax-inject /artifactId
version 1.0-201002241208 /version
/dependency
!-- 支持 servlet 的包 --
dependency
groupId javax.servlet /groupId
artifactId javax.servlet-api /artifactId
version 3.0.1 /version
scope provided /scope
/dependency
!-- 助手類工具包 --
dependency
groupId org.apache.commons /groupId
artifactId commons-exec /artifactId
version 1.2 /version
/dependency
!--linux 遠(yuǎn)程鏈接相關(guān)的包 --
dependency
groupId ch.ethz.ganymed /groupId
artifactId ganymed-ssh3 /artifactId
version build210 /version
/dependency
!-- 日志相關(guān)的包 --
dependency
groupId commons-logging /groupId
artifactId commons-logging /artifactId
version 1.1.1 /version
/dependency
dependency
groupId log4j /groupId
artifactId log4j /artifactId
version 1.2.16 /version
/dependency
!-- ******************** 測(cè)試相關(guān)的包 *********************************** --
!-- junit4 測(cè)試包 --
dependency
groupId junit /groupId
artifactId junit /artifactId
version 4.8.1 /version
scope test /scope
/dependency
!-- spring 測(cè)試包 --
dependency
groupId org.springframework /groupId
artifactId spring-test /artifactId
version 3.2.2.RELEASE /version
scope test /scope
/dependency
/dependencies
“spring maven 開(kāi)發(fā)包怎么調(diào)試”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注丸趣 TV 網(wǎng)站,丸趣 TV 小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
正文完
發(fā)表至: 計(jì)算機(jī)運(yùn)維
2023-08-16