点击提交按钮,显示404,There is no Action mapped for namespace [/] and action name [in] associated with context path [/ssh]. - [unknown location]
2017-08-30
已经成功整合,写的一个学习记录,欢迎大家批评指正。也给初学者一个参考。拜谢。http://www.cnblogs.com/himonkey/p/7450995.html
2017-08-30
...弄了一晚上,大家如果出现maven来导包的话..(导了个hibernate5的) 那个方言的地方org.hibernate.dialect.MySQL5Dialect 要设置成这个.. 我的问题是 有SQL输出语句 但是数据库不会建表,我改成这个 就可以了..
2017-08-25
纠正!!!
提交时前台报错,没有返回结果, HTTP Status 404 - No result defined for action com.ssh.action.ProductAction and result input 我测试多次之后好像是因为价格输入了非数字的原因..具体是什么原理也不是很清楚....
提交时前台报错,没有返回结果, HTTP Status 404 - No result defined for action com.ssh.action.ProductAction and result input 我测试多次之后好像是因为价格输入了非数字的原因..具体是什么原理也不是很清楚....
2017-08-25
抛出空指针异常的话 可能的原因是applicationContext.xml中的bean 大写的关系 注意下大小写~
2017-08-25
提交时前台报错,没有返回结果, HTTP Status 404 - No result defined for action com.ssh.action.ProductAction and result input 要是有出现这个情况的话 在struts.xml 中 action里边 加个<result>标签 内容没有也可以
2017-08-25
作为新手,我可以告诉大家一般犯的错误就是哪个小地方写错或者少写了个字母之类的.......然后根据cause by后面直白的说明回去对比检查下,一般都能检查出来~
2017-08-24
请新手注意,排错时像这样子的 Error creating bean with name 'sessionFactory' defined in class path resource [applicationContext.xml] cause by。。。。看cause by部分的,后面对的错误导致前面的问题。
2017-08-24
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'productDao' is defined
2017-08-18
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:applicationContext.xml</param-value>
</context-param>
加个*就好了。如果要把applicationContext放在src下的话。
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:applicationContext.xml</param-value>
</context-param>
加个*就好了。如果要把applicationContext放在src下的话。
2017-08-18