真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Mybatis-Spring連接mysql8.0配置步驟出錯(cuò)怎么辦

這篇文章主要為大家展示了“Mybatis-Spring連接MySQL8.0配置步驟出錯(cuò)怎么辦”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“Mybatis-Spring連接mysql8.0配置步驟出錯(cuò)怎么辦”這篇文章吧。

成都創(chuàng)新互聯(lián)公司堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都做網(wǎng)站、網(wǎng)站設(shè)計(jì)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的縉云網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!

環(huán)境以及配置文件

JDBC jar版本 : 8.0.11  Mybatis jar版本 : 3.4.6  Spring jar版本 : 4.3.18  Mybatis-Spring jar版本 : 1.3.1  配置信息文件 : db.properties  Spring配置文件 : applicationContext.xml

配置db.properties

配置db.properties中填寫(xiě)以下內(nèi)容

# 驅(qū)動(dòng)名這樣寫(xiě)jdbc.driver=com.mysql.cj.jdbc.Driver# url這樣寫(xiě)jdbc.url=jdbc:mysql://localhost:3306/test?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true# 數(shù)據(jù)庫(kù)用戶名jdbc.username=root# 數(shù)據(jù)密碼jdbc.password=password

這里有一個(gè)錯(cuò)誤點(diǎn), 就是用戶名的key用的是username, 這樣的話, 在applicationContext.xml中配置數(shù)據(jù)源時(shí)用的是${username}, 這樣會(huì)導(dǎo)致一個(gè)問(wèn)題, 因?yàn)閄ML的表達(dá)式中${username}, 代表電腦環(huán)境路徑下的username!!! 就是說(shuō)用的是你電腦的用戶名, 不是數(shù)據(jù)庫(kù)的用戶名!!! 總而言之, 別用username當(dāng)key名 我用的是jdbc.username.

配置applicationContext.xml

1.在applicationContext.xml中, 引入db.properties 文件.

2.配置數(shù)據(jù)源

3.配置 Mybatis 掃描mapper.XML文件

4.掃描全部dao層接口

配置dao 層接口與 mapper文件

dao接口

public interface UserDao { public List selAll();}

mapperXML文件

測(cè)試

@Testpublic void selAll() { ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml"); UserDao userDao = context.getBean(UserDao.class); List list = userDao.selAll(); System.out.println(list);}

以上是“Mybatis-Spring連接mysql8.0配置步驟出錯(cuò)怎么辦”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


新聞標(biāo)題:Mybatis-Spring連接mysql8.0配置步驟出錯(cuò)怎么辦
文章轉(zhuǎn)載:http://weahome.cn/article/ghddes.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部