Quellcode durchsuchen

修复Mybatis扫描Mapper配置问题

xueli.xue vor 9 Jahren
Ursprung
Commit
89cf8a35da
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      xxl-job-admin/src/main/resources/applicationcontext-database.xml

+ 1 - 1
xxl-job-admin/src/main/resources/applicationcontext-database.xml Datei anzeigen

@@ -39,7 +39,7 @@
39 39
 	
40 40
 	<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
41 41
 		<property name="dataSource" ref="dataSource" />
42
-		<property name="mapperLocations" value="classpath*:mybatis-mapper/*.xml"/>
42
+		<property name="mapperLocations" value="classpath:mybatis-mapper/*.xml"/>
43 43
 	</bean>
44 44
     
45 45
     <!-- scope must be "prototype" when junit -->