搭建工程问题

eclipse的maven配置报could not read settings.xml
原因是文件有中文或编码有问题,从网上下载一个新的maven取其settins.xml文件
即可,根据需要修改这个文件


spring启动报jdbcTemplate找不到
applicationContext.xml对其进行配置时路径错误,在eclipse如果Ctrl加鼠标焦点
链接不过去的话路径就错误了,配置方法可进入类jar包,复制路径进行快速配置
不用一个词一个词的检查

spring事务配置:expression=" execution(* com.evan.cn.spring.service..*(..))*"
注意加空格:execution前和包路径前,否则启动报错


Cannot proxy target class because CGLIB2 is not available. Add CGLIB to the class path or specify proxy interfaces.
引入cglib-nodep的jar即可

你可能感兴趣的:(spring)