struts
Vic·S
这个作者很懒,什么都没留下…
展开
-
【BUG】java.sql.SQLException:ORA-00923:未找到要求的FROM关键字
错误原因:select中的的字段,书写不正确,可能缺少“,”导致,SQL提前寻找FROM关键字。解决方法:检查SELECT中的字段,书写格式!原创 2021-09-07 00:57:51 · 1251 阅读 · 0 评论 -
【BUG】org.springframework.beans.NotWritablePropertyException:不可写属性异常
错误描述:org.springframework.beans.NotWritablePropertyException:Invalid property 'monthDeductDetailService' of bean class [com.resoft.ImportMonthDeductDetailExcelAction]:Bean property 'monthDeductDetailService' is not writable or has an invalid setter method原创 2021-09-06 23:13:36 · 186 阅读 · 0 评论 -
【BUG】Unable to instantiate Action, xxxAction, defined for ‘xxx‘ in namespace ‘/‘xxxAction
错误原因:若没使用spring,则struts.xml配置文件中,这个action的class属性的路径没有写完整,应该是“包名.类名”;使用spring,就是applicationContext.xml里没有为这个action定义bean,这样struts.xml中对应的action的class属性就是Spring配置文件中bean的id;如://applicationContext.xml<bean id="testAction" class="admin.action.AdminA原创 2021-08-26 04:51:41 · 217 阅读 · 0 评论