详解Spring的applicationContext.xml配置文件

转自:http://blog.csdn.net/zdwzzu2006/article/details/5993216

想必用过Spring的程序员们都有这样的感觉,Spring把逻辑层封装的太完美了(个人感觉View层封装的不是很好)。以至于有的初学者都不知道Spring配置文件的意思,就拿来用了。所以今天我给大家详细解释一下SpringapplicationContext.xml文件。Ok,还是通过代码加注释的方式为大家演示:

以下是详解SpringapplicationContext.xml文件代码:








com.mysql.jdbc.Driver




jdbc:mysql://localhost:3306/tie?useUnicode=true&characterEncoding=utf-8




root



123



class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">






com/alonely/vo/User.hbm.xml





class="org.springframework.orm.hibernate3.HibernateTemplate">






















你可能感兴趣的:(JavaEE,spring)