[已解决]HTTP Status 404 - No result defined for action xxx and result exception问题

2024-08-29 15:58

本文主要是介绍[已解决]HTTP Status 404 - No result defined for action xxx and result exception问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在做crm项目练习时,发现在添加客户的时候页面出现HTTP Status 404 - No result defined for action xxx and result exception错误,而控制台没有报任何错误信息。

    Action类

package com.tangseng.web.action;import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;
import com.tangseng.domain.Customer;
import com.tangseng.service.CustomerService;
import com.tangseng.utils.PageBean;public class CustomerAction extends ActionSupport implements ModelDriven<Customer> {//接收表单传入参数private Customer customer = new Customer();private Integer currentPage;private Integer pageSize;//获得serviceprivate CustomerService cs;//查询分页列表public String list(){//调用service层处理分页逻辑,返回pageBeanPageBean pb = cs.getPageBean(customer,currentPage,pageSize);pb.setSearchname(customer.getCust_name());//将pageBean封装到request域中ActionContext.getContext().put("pageBean", pb);return "list";}public String add(){cs.save(customer);return "tolist";}@Overridepublic Customer getModel() {return customer;}public void setCurrentPage(Integer currentPage) {this.currentPage = currentPage;}public void setPageSize(Integer pageSize) {this.pageSize = pageSize;}public void setCs(CustomerService cs) {this.cs = cs;}public Customer getCustomer() {return customer;}public void setCustomer(Customer customer) {this.customer = customer;}public Integer getCurrentPage() {return currentPage;}public Integer getPageSize() {return pageSize;}}

service类

package com.tangseng.service.Imp;import java.util.List;import org.hibernate.criterion.DetachedCriteria;
import org.hibernate.criterion.Restrictions;import org.apache.commons.lang3.StringUtils;
import com.tangseng.dao.CustomerDao;
import com.tangseng.domain.Customer;
import com.tangseng.service.CustomerService;
import com.tangseng.utils.PageBean;public class CustomerServiceImp implements CustomerService {private CustomerDao cd;public void setCd(CustomerDao cd) {this.cd = cd;}@Overridepublic PageBean getPageBean(Customer customer, Integer currentPage, Integer pageSize) {//封装离线查询对象DetachedCriteria dc = DetachedCriteria.forClass(Customer.class);if(StringUtils.isNotBlank(customer.getCust_name())){dc.add(Restrictions.like("cust_name", "%"+customer.getCust_name()+"%"));}//根据条件查询总记录数Integer totalCount = cd.findTotalCount(dc);//封装pageBean对象PageBean pb = new PageBean(currentPage, totalCount, pageSize);//计算索引(在pageBean中算好)//根据条件查询列表List<Customer> customerlist = cd.findPageList(dc,pb);//整合pageBean返回pb.setList(customerlist);return pb;}@Overridepublic void save(Customer customer) {System.out.println(customer.toString());cd.saveorupdate(customer);}}

BaseDao类

package com.tangseng.dao.Imp;import java.io.Serializable;
import java.lang.reflect.ParameterizedType;
import java.util.List;import org.hibernate.criterion.DetachedCriteria;
import org.hibernate.criterion.Projections;
import org.springframework.orm.hibernate5.support.HibernateDaoSupport;import com.tangseng.dao.BaseDao;
import com.tangseng.utils.PageBean;public class BaseDaoImp<T> extends HibernateDaoSupport implements BaseDao<T> {private Class clazz;//用于接收运行时的泛型类型public BaseDaoImp(){//获得当前类型的带有泛型的父类ParameterizedType genericSuperclass = (ParameterizedType) this.getClass().getGenericSuperclass();//获得运行期的泛型类型clazz = (Class) genericSuperclass.getActualTypeArguments()[0];}@Overridepublic void save(T t) {getHibernateTemplate().save(t);}@Overridepublic void delete(T t) {getHibernateTemplate().delete(t);}@Overridepublic void delete(Serializable id) {T t = findById(id);delete(t);}@Overridepublic void modify(T t) {getHibernateTemplate().update(t);}@Overridepublic T findById(Serializable id) {T t = (T) getHibernateTemplate().get(clazz, id);return t;}@Overridepublic Integer findTotalCount(DetachedCriteria dc) {Integer totalcount = null;dc.setProjection(Projections.rowCount());List totalcountlist = getHibernateTemplate().findByCriteria(dc);if(totalcountlist.size()>0&&totalcountlist!=null){String string = totalcountlist.get(0).toString();totalcount = Integer.parseInt(string);}//清空函数查询dc.setProjection(null);return totalcount;}@Overridepublic List<T> findPageList(DetachedCriteria dc, PageBean pb) {//分页查询操作List<T> list = (List<T>) getHibernateTemplate().findByCriteria(dc, pb.getBegin(), pb.getPageSize());return list;}@Overridepublic List<T> findList(DetachedCriteria dc) {return (List<T>) getHibernateTemplate().findByCriteria(dc);}@Overridepublic void saveorupdate(T t) {getHibernateTemplate().saveOrUpdate(t);}}

Dao实现类

package com.tangseng.dao.Imp;
import com.tangseng.dao.CustomerDao;
import com.tangseng.domain.Customer;public class CustomerDaoImp extends BaseDaoImp<Customer> implements CustomerDao {}

通过测试add方法接收参数正常,在debug模式下,当断点执行到getHibernateTemplate().saveorUpdate方法时跳转到ognl源码(看不懂),最后再页面输出错误信息,而控制台没有出现错误信息


点击保存,控制台打印接收到的参数


基本确定是getHibernateTemplate().saveorUpdate这个代码产生的问题,刚刚才发现,原来是事务没有提交。

原因在与配置Spring切入点的时候把,切入点配到Dao层去了。

要把Spring切入点配到service层的方法上才行

这篇关于[已解决]HTTP Status 404 - No result defined for action xxx and result exception问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1118305

相关文章

MybatisGenerator文件生成不出对应文件的问题

《MybatisGenerator文件生成不出对应文件的问题》本文介绍了使用MybatisGenerator生成文件时遇到的问题及解决方法,主要步骤包括检查目标表是否存在、是否能连接到数据库、配置生成... 目录MyBATisGenerator 文件生成不出对应文件先在项目结构里引入“targetProje

C#使用HttpClient进行Post请求出现超时问题的解决及优化

《C#使用HttpClient进行Post请求出现超时问题的解决及优化》最近我的控制台程序发现有时候总是出现请求超时等问题,通常好几分钟最多只有3-4个请求,在使用apipost发现并发10个5分钟也... 目录优化结论单例HttpClient连接池耗尽和并发并发异步最终优化后优化结论我直接上优化结论吧,

Java内存泄漏问题的排查、优化与最佳实践

《Java内存泄漏问题的排查、优化与最佳实践》在Java开发中,内存泄漏是一个常见且令人头疼的问题,内存泄漏指的是程序在运行过程中,已经不再使用的对象没有被及时释放,从而导致内存占用不断增加,最终... 目录引言1. 什么是内存泄漏?常见的内存泄漏情况2. 如何排查 Java 中的内存泄漏?2.1 使用 J

numpy求解线性代数相关问题

《numpy求解线性代数相关问题》本文主要介绍了numpy求解线性代数相关问题,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 在numpy中有numpy.array类型和numpy.mat类型,前者是数组类型,后者是矩阵类型。数组

解决systemctl reload nginx重启Nginx服务报错:Job for nginx.service invalid问题

《解决systemctlreloadnginx重启Nginx服务报错:Jobfornginx.serviceinvalid问题》文章描述了通过`systemctlstatusnginx.se... 目录systemctl reload nginx重启Nginx服务报错:Job for nginx.javas

Redis缓存问题与缓存更新机制详解

《Redis缓存问题与缓存更新机制详解》本文主要介绍了缓存问题及其解决方案,包括缓存穿透、缓存击穿、缓存雪崩等问题的成因以及相应的预防和解决方法,同时,还详细探讨了缓存更新机制,包括不同情况下的缓存更... 目录一、缓存问题1.1 缓存穿透1.1.1 问题来源1.1.2 解决方案1.2 缓存击穿1.2.1

Mysql DATETIME 毫秒坑的解决

《MysqlDATETIME毫秒坑的解决》本文主要介绍了MysqlDATETIME毫秒坑的解决,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着... 今天写代码突发一个诡异的 bug,代码逻辑大概如下。1. 新增退款单记录boolean save = s

vue解决子组件样式覆盖问题scoped deep

《vue解决子组件样式覆盖问题scopeddeep》文章主要介绍了在Vue项目中处理全局样式和局部样式的方法,包括使用scoped属性和深度选择器(/deep/)来覆盖子组件的样式,作者建议所有组件... 目录前言scoped分析deep分析使用总结所有组件必须加scoped父组件覆盖子组件使用deep前言

解决Cron定时任务中Pytest脚本无法发送邮件的问题

《解决Cron定时任务中Pytest脚本无法发送邮件的问题》文章探讨解决在Cron定时任务中运行Pytest脚本时邮件发送失败的问题,先优化环境变量,再检查Pytest邮件配置,接着配置文件确保SMT... 目录引言1. 环境变量优化:确保Cron任务可以正确执行解决方案:1.1. 创建一个脚本1.2. 修

Python 标准库time时间的访问和转换问题小结

《Python标准库time时间的访问和转换问题小结》time模块为Python提供了处理时间和日期的多种功能,适用于多种与时间相关的场景,包括获取当前时间、格式化时间、暂停程序执行、计算程序运行时... 目录模块介绍使用场景主要类主要函数 - time()- sleep()- localtime()- g