zoukankan      html  css  js  c++  java
  • spring管理

    spring管理

    SqlMapConfig.xml:

        <?xml version="1.0" encoding="UTF-8"?>
        <beans xmlns="http://www.springframework.org/schema/beans"
               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
               xmlns:context="http://www.springframework.org/schema/context"
               xsi:schemaLocation="
               http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
               http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"
        >
            <context:property-placeholder location="classpath:db.properties"/>
            <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
                <property name="driverClassName" value="${db.driver}"/>
                <property name="username" value="${db.username}"/>
                <property name="password" value="${db.password}"/>
                <property name="url" value="${db.url}"/>
            </bean>
            <bean id="sessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
                <property name="configLocation" value="SqlMapConfig.xml"/>
                <property name="dataSource" ref="dataSource"/>
            </bean>
            <bean id="testMapper" class="daoImpl.TestMapperImpl">
                <property name="sqlSessionFactory" ref="sessionFactory"/>
            </bean>
            <!--<bean id="testMapper" class="org.mybatis.spring.mapper.MapperFactoryBean">-->
                <!--<property name="mapperInterface" value="mapper.TestMapper"/>-->
                <!--<property name="sqlSessionFactory" ref="sessionFactory"/>-->
            <!--</bean>-->
        
            <!-- Mapper代理的方式开发方式二,扫描包方式配置代理
            每个mapper代理对象的id就是类名,首字母小写
            -->
            <!--<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">-->
                <!--<property name="basePackage" value="mapper"/>-->
                <!--<property name="sqlSessionFactoryBeanName" value="sessionFactory"/>-->
            <!--</bean>-->
        </beans>
    

    impl:

        public class TestMapperImpl extends SqlSessionDaoSupport implements TestMapper {
            public List<Test> selectByReg() {
                return getSqlSession().selectList("selectByReg");
            } 
        }
    

    测试:

        public class SpringTest2 {
            @Test
            public void test1(){
                ApplicationContext context = new ClassPathXmlApplicationContext("classpath:spring/applicationContext.xml");
        //        TestMapperImpl bean = context.getBean(TestMapperImpl.class);
                TestMapper mapper = (TestMapper) context.getBean("testMapper");
                List<mapper.Test> list = mapper.selectByReg();
                System.out.println(list);
            }
        }
    
  • 相关阅读:
    怎么往mac中finder个人收藏里添加文件夹
    UIView 动画
    添加.pch文件
    声明属性的关键字
    创建app前的环境配置/AppIcon/启动图片
    修改动画的旋转支点
    实现自定义xib和storyboard的加载,
    Quartz2D绘图 及实例:下载进度
    帧动画
    在职研究生第一单元第二单元第三单元第四单元是什么?
  • 原文地址:https://www.cnblogs.com/fly-book/p/10405228.html
Copyright © 2011-2022 走看看