No matching editors or conversion strategy foundsession
IOC問題: EmpService bean 實現了 Iemp接口,就不能直接做爲參數傳入Action裏面; 要將Iemp接口做爲對象參數傳入Action,而後在Action引用接口對象裏面的方法。 Spring 容器 接口要引用EmpService實現類。 <bean id="emp" class="pojo.Emp"/> <bean id="empAction" class="action.EmpAction"> <property name="iemp" ref="empService"></property> <property name="e" ref="emp"/> </bean> <bean id="empService" class="service.EmpService"> <property name="sessionFactory" ref="sessionFactory"></property> </bean> </beans>
not-null property references a null or transient value: pojo.Emp.namecode
還有一點,表單採用域模型,字段採用e.name 方式引用, e爲 Action裏面實體Emp的對象e <s:textfield name="e.name"></s:textfield>