Spring Webflow - Action Execution Exception
问题 Please refer to this question I asked earlier. Calling a function from Spring Webflow to store in Database(MySQL) I edited the removeAllCartItemsCart method to this public void removeAllCartItemsCart(Cart cart) { List<CartItem> cartItems = cart.getCartItems(); Session session = sessionFactory.getCurrentSession(); int cusid=cart.getCustomer().getCustomerId(); for (CartItem item : cartItems) { int pid=item.getProduct().getProductId(); Query query=session.createQuery("from ProcessOrder where