-
dao层单元测试查看全部
-
官网地址查看全部
-
C:\Users\Administrator>mvn archetype:generate -DgroupId=org.seeckill -DartifactI d=seeckill -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=false -DarchetypeCatalog=local 创建maven项目,查看全部
-
Spring dao层配置:扫描Dao接口包查看全部
-
Spring dao层配置:SqlSessionFactory对象查看全部
-
Spring dao层配置:数据库相关查看全部
-
通过别名的形式把数据封装到“一端”,本质是OGNL表达式查看全部
-
加上“ignore”出错的话返回0查看全部
-
“parameterType”只能写一个数据类型,当传进多个参数时可以不写。如果返回值是List,“resultType”里面写List里的元素类型就可以查看全部
-
XML文件中如果出现“<=”要用<![CDATA[]]>包起来。可以不写“parameterType”,只要名称一致传进去的参数也能自动识别。可以定义返回值为int,即SQL语句影响的行数查看全部
-
<!-- 3:配置sqlSessionFactory对象--> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <!-- 注入数据库连接池--> <property name="dataSource" ref="dataSource"/> <!-- 配置mybatis全局配置文件的位置--> <property name="configLocation" value="classpath:mybatis-config.xml"/> <!-- 扫描entity包 使用类名--> <property name="typeAliasesPackage" value="org.seckill.entity"/> <!-- 扫描sql配置文件:mapper需要的xml文件--> <property name="mapperLocations" value="classpath:mapper/*.xml"/> </bean> <!-- 4:配置扫描DAO接口包,动态实现DAO接口,并注入到spring容器中--> <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"> <!-- 注入sqlSessionFactory--> <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/> <!-- 扫描DAO接口包--> <property name="basePackage" value="org.seckill.dao"/> </bean>查看全部
-
更少的配置查看全部
-
logback spring mybatis 配置文档地址查看全部
-
又是一个ide工具查看全部
-
ignore关键字 过滤主键冲突报错查看全部
举报
0/150
提交
取消