這篇文章給大家分享的是有關(guān)Spring boot + mybatis + orcale怎么實(shí)現(xiàn)的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
主要從事網(wǎng)頁設(shè)計(jì)、PC網(wǎng)站建設(shè)(電腦版網(wǎng)站建設(shè))、wap網(wǎng)站建設(shè)(手機(jī)版網(wǎng)站建設(shè))、自適應(yīng)網(wǎng)站建設(shè)、程序開發(fā)、微網(wǎng)站、重慶小程序開發(fā)公司等,憑借多年來在互聯(lián)網(wǎng)的打拼,我們在互聯(lián)網(wǎng)網(wǎng)站建設(shè)行業(yè)積累了豐富的成都網(wǎng)站設(shè)計(jì)、做網(wǎng)站、成都外貿(mào)網(wǎng)站建設(shè)公司、網(wǎng)絡(luò)營銷經(jīng)驗(yàn),集策劃、開發(fā)、設(shè)計(jì)、營銷、管理等多方位專業(yè)化運(yùn)作于一體,具備承接不同規(guī)模與類型的建設(shè)項(xiàng)目的能力。
添加 mybatis 查詢 orcale 數(shù)據(jù)庫
第一步: 新建幾個(gè)必須的包, 結(jié)果如下
第二步: 在service包下新建personService.java 根據(jù)名字查person方法接口
package com.example.first.service; import com.example.first.entity.Person; public interface personService { Person queryPersonByName(String name); }
第三步: 在serviceImpl包下新建personServiceImpl.java 實(shí)現(xiàn)personService.java接口
package com.example.first.serviceImpl; import com.example.first.personDao.personMapperDao; import com.example.first.entity.Person; import com.example.first.service.personService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; @Service @Transactional public class personServiceImpl implements personService { @Autowired personMapperDao personMapperDao; @Override public Person queryPersonByName(String name) { Person person = personMapperDao.findByName(name); return person; } }
第四步: personDao下新建personMapperDao.java 有一個(gè)查詢person的方法
package com.example.first.personDao; import com.example.first.entity.Person; import org.apache.ibatis.annotations.Mapper; @Mapper public interface personMapperDao { Person findByName(String name); }
第五步: 在resource下新建personMapper.xml
第六步: 在application.properties 中添加數(shù)據(jù)源 , mapper文件路徑 和實(shí)體路徑
spring.jpa.database=oracle spring.datasource.driver-class-name=oracle.jdbc.driver.OracleDriver spring.datasource.url=jdbc:oracle:thin:@//192.168.3.177:1521/orcl spring.datasource.username=liguang_dev spring.datasource.password=123456 spring.jpa.hibernate.ddl-auto=update mybatis.mapperLocations=classpath:/mapper/*.xml mybatis.typeAliasesPackag= com.example.first.entity spring.thymeleaf.prefix=classpath:/templates/ spring.thymeleaf.suffix=.html spring.thymeleaf.mode = HTML5
第七步: 在pom文件中添加依賴
4.0.0 com.example.first springboot 0.0.1-SNAPSHOT jar springboot Demo project for Spring Boot org.springframework.boot spring-boot-starter-parent 1.5.6.RELEASE UTF-8 UTF-8 1.8 org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-test test org.springframework.boot spring-boot-starter-thymeleaf oracle ojdbc7 1.0.0.1 org.mybatis.spring.boot mybatis-spring-boot-starter 1.1.1 org.springframework.boot spring-boot-starter-jdbc org.springframework.boot spring-boot-maven-plugin
第八步:瀏覽器輸入http://localhost:8080/person/show?name=zhang
感謝各位的閱讀!關(guān)于“Spring boot + mybatis + orcale怎么實(shí)現(xiàn)”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!