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

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

Spring學習——Spring整合-創(chuàng)新互聯(lián)

Spring整合MyBatis
  • MyBatis程序核心對象分析

    讓客戶滿意是我們工作的目標,不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項目有:國際域名空間、網(wǎng)絡(luò)空間、營銷軟件、網(wǎng)站建設(shè)、崇川網(wǎng)站維護、網(wǎng)站推廣。
    //1.創(chuàng)建SqLSessionFactoryBuiLder對象
    sqlSessionFactoryBuilder sqlsessionFactoryBuilder = new sqlsessionFactoryBuilder();
    //2.加載SqLMapConfig.xmL配置文件
    InputStream inputStream = Resources.getResourceAsStream("SqlMapConfig.xml");
    //3.創(chuàng)建SqLSessionFactory對象
    sqlSessionFactory sqlSessionFactory = sqlSessionFactoryBuilder.build(inputStream);
    //4.獲取SqLSession
    sqlSession sqlsession = sqlsessionFactory.openSession();
    //5.執(zhí)行SqlSession對象執(zhí)行查詢,獲取結(jié)果User
    AccountDao accountDao = sqlSession.getMapper(AccountDao.class);
    Account ac = accountDao.findById(2);
    system.out.println(ac);
    //6.釋放資源
    sqlSession.close();
    ----------↑初始化屬性數(shù)據(jù)↑--------------------↑初始化類別名↑----------    ----------↑初始化DataSource↑--------------------↑初始化映射配置↑----------
  • 整合后

    @Bean
    public SqlSessionFactoryBean sqlSessionFactory(DataSource dataSource){sqlsessionFactoryBean ssfb = new SqlSessionFactoryBean();
        ssfb.setTypeAliasesPackage("com.jihua. domain");
        ssfb. setDataSource(dataSource);
        return ssfb;
    }
    @Bean
    public MapperScannerConfigurer mapperScannerConfigurer(){MapperScannerConfigurer msc = new MapperScannerConfigurer();
        msc.setBasePackage("com.jihua.dao");
        return msc;
    }
整合JUnit
  • 導(dǎo)坐標

    junitjunit4.12testorg.springframeworkspring-test5.2.10.RELEASE
  • 使用Spring整合Junit專用的類加載器

    @Runwith(SpringJUnit4classRunner.class)
    @Contextconfiguration(classes = SpringConfig.class)
    public class BookServiceTest {@Autowired
        private BookService bookService;
        @Test
        public void testSave(){bookService.save();
        }
    }

你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機房具備T級流量清洗系統(tǒng)配攻擊溯源,準確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級服務(wù)器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧


網(wǎng)站標題:Spring學習——Spring整合-創(chuàng)新互聯(lián)
網(wǎng)站URL:http://weahome.cn/article/ddieie.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部