這篇文章主要介紹“如何在idea中搭建springboot項(xiàng)目”的相關(guān)知識(shí),小編通過實(shí)際案例向大家展示操作過程,操作方法簡單快捷,實(shí)用性強(qiáng),希望這篇“如何在idea中搭建springboot項(xiàng)目”文章能幫助大家解決問題。
創(chuàng)新互聯(lián)公司專注于信宜網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供信宜營銷型網(wǎng)站建設(shè),信宜網(wǎng)站制作、信宜網(wǎng)頁設(shè)計(jì)、信宜網(wǎng)站官網(wǎng)定制、微信小程序開發(fā)服務(wù),打造信宜網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供信宜網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
一.在你建立的工程下創(chuàng)建 Module 選擇Spring initializr創(chuàng)建。
二.在Type處選擇: Maven Project(項(xiàng)目的構(gòu)建工具)
三.創(chuàng)建依賴時(shí)勾上web,mybatis,MySQL(這個(gè)看你個(gè)人需要吧,可以自主選擇)
建立好的項(xiàng)目結(jié)構(gòu)如下:
相對(duì)應(yīng)的pom.xml文件
4.0.0 com demo 0.0.1-SNAPSHOT jar demo Demo project for Spring Boot org.springframework.boot spring-boot-starter-parent 1.5.9.RELEASE UTF-8 UTF-8 1.8 org.mybatis.spring.boot mybatis-spring-boot-starter 1.3.1 org.springframework.boot spring-boot-starter-web mysql mysql-connector-java runtime org.springframework.boot spring-boot-starter-test test com.mchange c3p0 0.9.5.2 org.springframework.boot spring-boot-maven-plugin
application.yml(項(xiàng)目建城時(shí)這個(gè)application文件的后綴名不叫yml,是官方推薦把后綴改成yml的,好處是代碼有提示)
mybatis: mapper-locations: classpath:mapper/*.xml type-aliases-package: com.demo.pojo #數(shù)據(jù)庫連接池 spring: datasource: username: root password: sasa url: jdbc:mysql://localhost:3306/ssm driver-class-name: com.mysql.jdbc.Driver
啟動(dòng)
關(guān)于“如何在idea中搭建springboot項(xiàng)目”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。