比如我想查看saveOrUpdate是怎么实现的,它是在org.springframework.orm.hibernate3.HibernateTemplate.class里 public TAccount saveClaimVoucher(TAccount claimVoucher) { this.getHibernateTemplate().saveOrUpdate(claimVoucher); this.getHibernateTemplate().flush(); return claimVoucher; } 在Eclipse查看开发包jar源码的方法如下: 1.选择项目,右键中单击【Properties】 2.【Java Build Path】-【Libraries】,在下面找到如:org.springframework.core-3.1.0.M1.jar包,展开它,选择【Source attachment】,单击右边的【Edit…】按钮。 3.在打开的窗口中,可选择文件(jar\zip),目录或工作空间中的jar文件,在这里我选择External Folder…,选择如F:\Development Kit\spring-framework-3.1.0.M1-with-docs\spring-framework-3.1.0.M1\projects即可。 4.连续单击【OK】两次回到Eclipse工作平台即可。
我的为什么不行啊 我【Java Build Path】-【Libraries】找到spring.jar,展开,选择【Source attachment】,单击右边的【Edit…】按钮,选择workspace,输入:/autojboa/WebContent/WEB-INF/lib/spring.jar,最后运行到saveOrUpdate还是进不去,我的/autojboa/WebContent/WEB-INF/lib/spring.jar目录下有spring.jar maven eclipse 插件的话这些都不是问题,呵呵。直接 download source 就有了。
|