第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定

視頻里面的代碼不完整,搞了很久,導(dǎo)致查詢結(jié)果是null,完整代碼如下:

視頻里面的代碼不完整,搞了很久,導(dǎo)致查詢結(jié)果是null,完整代碼如下:


package com.imooc.demo.config.dao;


import org.mybatis.spring.SqlSessionFactoryBean;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.beans.factory.annotation.Qualifier;

import org.springframework.beans.factory.annotation.Value;

import org.springframework.context.annotation.Bean;

import org.springframework.context.annotation.Configuration;

import org.springframework.core.io.ClassPathResource;

import org.springframework.core.io.support.PathMatchingResourcePatternResolver;

import javax.sql.DataSource;

import java.io.IOException;


@Configuration

public class SessionFactoryConfiguration {

? ? private static String mybatisConfigFile;

? ? @Value("${mybatis_config_file}")

? ? public void setMybatisConfigFile(String mybatisConfigFile) {

? ? ? ? SessionFactoryConfiguration.mybatisConfigFile = mybatisConfigFile;

? ? }



? ? private static String mapperPath;

? ? @Value("${mapper_path}")

? ? public void setMapperPath(String mapperPath) {

? ? ? ? SessionFactoryConfiguration.mapperPath = mapperPath;

? ? }


? ? @Value("${entity_package}")

? ? private String entityPackage;


? ? @Autowired

? ? @Qualifier("dataSource")

? ? private DataSource dataSource;


? ? @Bean(name = "sqlSessionFactory")

? ? public SqlSessionFactoryBean createSqlSessionFactoryBean() throws IOException {

? ? ? ? SqlSessionFactoryBean sqlSessionFactoryBean = new SqlSessionFactoryBean();

? ? ? ? sqlSessionFactoryBean.setConfigLocation(new ClassPathResource(mybatisConfigFile));

? ? ? ? PathMatchingResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();

? ? ? ? String packageSearchPath = PathMatchingResourcePatternResolver.CLASSPATH_ALL_URL_PREFIX + mapperPath;

? ? ? ? sqlSessionFactoryBean.setMapperLocations(resolver.getResources(packageSearchPath));

? ? ? ? sqlSessionFactoryBean.setDataSource(dataSource);

? ? ? ? sqlSessionFactoryBean.setTypeAliasesPackage(entityPackage);

? ? ? ? return sqlSessionFactoryBean;

? ? }

}


正在回答

舉報(bào)

0/150
提交
取消

視頻里面的代碼不完整,搞了很久,導(dǎo)致查詢結(jié)果是null,完整代碼如下:

我要回答 關(guān)注問題
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號