-
service查看全部
-
en sdsdsd查看全部
-
strutsjar包查看全部
-
SSH知识点回顾查看全部
-
从action调用service,再从service调用DAO,这就是三大框架整合到一起的调用顺序 基于SSH实现员工管理系统之框架整合篇——Action类交给Spring创建 Action可以使用两种方式创建: 1.有Struts2自身创建:只需要在struts.xml中进行配置就可以 2.交给Spring进行创建: 先在applicationContext.xml中配置Action,这里id="productAction" <!-- 配置Action --> <bean id="productAction" class="cn.muke.ssh.action.ProductAction" scope="prototype"> <!-- 手动注入Service --> <property name="productService" ref="productService" /> </bean> <!-- 配置业务层 --> <bean id="productService" class="cn.muke.ssh.service.ProductService"> <property name="productDao" ref="productDao" /> </bean> <!-- 配置Dao层 --> <bean id="productDao" class="cn.muke.ssh.dao.ProductDao"> </bean> </beans> 然后在struts.xml中进行配置 <struts> <package name="ssh" extends="struts-default" namespace="/"> <action name="product_*" class="productAction" method="{1}"> </action> </package> </struts> 推荐使用Action的类交给Spring框架创建,因为这样可以使用AOP来管理,否则Struts2自身创建不支持AOP。查看全部
-
了解jar包查看全部
-
SSH知识点回顾查看全部
-
SSH知识点回顾查看全部
-
学习ssh查看全部
-
一张图就概括了所有 6666查看全部
-
学查看全部
-
Web层 业务层 持久层 Struts2 Spring Hibernate查看全部
-
hibernate文件查看全部
-
引入框架的配置文件查看全部
举报
0/150
提交
取消