已采纳回答 / 慕侠7609664
这个是通配符配置 例如<action name="hello*" method="{1}" class="Hello"/>这样的Action配置,可以接收到以hello为开头的action请求,那么像"helloadd"的请求就会有Hello类的add方法来处理
2017-06-27
最新回答 / dop4
在action中登陆成功是否将当前用户存入actionActionContext.getContext().getSession().put("existEmployee", currentEmployee);这样就对了,之前的是属性不对应
2017-06-15
已采纳回答 / punk小调
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <property name="dataSource"> <ref bean="dataSource" /> </property> <property name="hibernateProperties"> <props> &...
2017-06-13
最新回答 / 熊点点
一,把User.hbm.xml放在src目录下二,在hibernate.cfg.xml加上<property name="current_session_context_class">thread</property> <mapping class="com.gdut.Model.User"/>
2017-06-13