标签:函数 read jdk8 lease illegal 不兼容 自动装配 构造 font
1 我使用Spring3.X --- jdk8----出现了如下问题:
java.lang.IllegalArgumentException org.springframework.asm.ClassReader.<init>(Unknown Source) org.springframework.asm.ClassReader.<init>(Unknown Source) org.springframework.asm.ClassReader.<init>(Unknown Source)
原因:Spring3.X --- jdk8不兼容
解决:
一:把jdk版本换成1.7 or 1.7以下
二:使用spring-4.0-RELEASE及以上版本
2 SpringMVC与Spring的整合时,如何实现对Controller中的Service进行依赖注入
解决:
@Autowired private UserService userService; public void setUserService(UserService userService) { this.userService = userService; }
@Autowired可以对成员变量、方法和构造函数进行标注,来完成自动装配的工作。
标签:函数 read jdk8 lease illegal 不兼容 自动装配 构造 font
原文地址:http://www.cnblogs.com/kingofkai/p/6142353.html