spring mybaits项目中,在一个普通的类中继承ApplicationListener,为什么项目启动时会报空指针异常?
发布网友
发布时间:2022-04-09 06:39
我来回答
共2个回答
热心网友
时间:2022-04-09 08:09
初步分析是你的文件名有问题 MyBatis-Con.....有这个文件吗 由于看不见下面的异常
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="configLocation" value="classpath:mybatis-configuration.xml"/>
<property name="dataSource" ref="dataSource" />
</bean>
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.xxxxxx.xxxxx."/>
<property name="markerInterface" value="com.xxx.xxxx.base.BaseDAO"/>
</bean>
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>追问有这个文件,按照您写的改了,可是还行不行
热心网友
时间:2022-04-09 09:27
的注入加上吧
@Autowired
privateBaseDao ;