91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring Boot中MyBatis依賴注入方式

發布時間:2024-09-11 11:33:29 來源:億速云 閱讀:111 作者:小樊 欄目:編程語言

在 Spring Boot 中,我們可以使用以下兩種方式將 MyBatis 的依賴注入到項目中:

  1. 使用 Starter 自動配置:

在項目的 pom.xml 文件中添加 MyBatis 和 MyBatis-Spring-Boot-Starter 的依賴:

   <groupId>org.mybatis.spring.boot</groupId>
   <artifactId>mybatis-spring-boot-starter</artifactId>
   <version>2.1.4</version>
</dependency>

然后在 application.propertiesapplication.yml 文件中配置 MyBatis 的相關信息,例如:

# application.properties
mybatis.mapper-locations=classpath:mapper/*.xml
mybatis.type-aliases-package=com.example.demo.entity

或者

# application.yml
mybatis:
  mapper-locations: classpath:mapper/*.xml
  type-aliases-package: com.example.demo.entity

這樣,Spring Boot 會自動配置 MyBatis,并將其注入到項目中。

  1. 手動配置:

在項目的 pom.xml 文件中添加 MyBatis 和 MyBatis-Spring 的依賴:

   <groupId>org.mybatis</groupId>
   <artifactId>mybatis</artifactId>
   <version>3.5.6</version>
</dependency><dependency>
   <groupId>org.mybatis</groupId>
   <artifactId>mybatis-spring</artifactId>
   <version>2.0.6</version>
</dependency>

然后創建一個配置類,例如 MyBatisConfig.java,并在其中配置 MyBatis 的相關信息:

@Configuration
@MapperScan("com.example.demo.mapper")
public class MyBatisConfig {

    @Bean
    public SqlSessionFactory sqlSessionFactory(DataSource dataSource) throws Exception {
        SqlSessionFactoryBean factoryBean = new SqlSessionFactoryBean();
        factoryBean.setDataSource(dataSource);
        return factoryBean.getObject();
    }

    @Bean
    public MapperScannerConfigurer mapperScannerConfigurer() {
        MapperScannerConfigurer configurer = new MapperScannerConfigurer();
        configurer.setBasePackage("com.example.demo.mapper");
        return configurer;
    }
}

這樣,MyBatis 就會被手動配置并注入到項目中。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

灵武市| 临澧县| 大庆市| 自贡市| 保山市| 永川市| 桐城市| 昂仁县| 建湖县| 马关县| 锡林浩特市| 乌拉特后旗| 六枝特区| 武陟县| 洛隆县| 太仓市| 新化县| 隆子县| 和静县| 合水县| 克山县| 绥化市| 山阴县| 无为县| 新津县| 乌拉特前旗| 公主岭市| 大兴区| 凤山县| 临武县| 庐江县| 西盟| 宿州市| 榆树市| 雅安市| 昆山市| 常宁市| 高雄县| 肥东县| 大方县| 镇远县|