mybatise配置文件通配

ApplicationContext context = new

ClassPathXmlApplicationContext("classpath*:conf/**/*application-context.xml");来创建ApplicationContext对象的话,Spring首先会通过路径中的非通配符部分即conf,先确定conf的路径,由于使用了classpaht*前缀,因此bin目录下的conf和jar包里的conf都会被加载,同时由于使用了/**/的方式,表明要加载conf目录下包括各级子目录中的所有配置文件,因此bin/conf/application-context.xml和





这个代表模糊某级目录
web-inf/无论浏览器还是内部只能用跳转,spring mvc中配置解析可以配置这里


======================================================================






classpath:com/wondersgroup/employeeBenefits/core/bases/mapping/*.xml//配合使用dao的配置
classpath:com/wondersgroup/employeeBenefits/core/author/mapping/*.xml




classpath:com/wondersgroup/employeeBenefits/core/**/*.xml等效







dialect=mysql
reasonable=true






mappers=com.github.abel533.mapper.Mapper
IDENTITY=mysql
notEmpty=true








//配合使用xml的配置






=====================================================================

你可能感兴趣的:(mybatise,配置文件通配)