当前位置:   article > 正文

网上书城之门户首页及新书上架,热销书籍_string goodname=(string)session.getattribute("ygoo

string goodname=(string)session.getattribute("ygoodname"); float goodprice=(

网上书城之门户首页及新书上架,热销书籍

实现功能

继上几篇博客的代码 我打算把各种功能的代码一一清楚的写出来 今天写的是门户首页及新书上架,热销书籍!

门户首页功能

门户首页分为两个java包和一部分的.js
CategoryDao

package com.huangjie.Dao;

import java.util.List;

import com.huangjie.entity.Category;
import com.huangjie.utils.BaseDao;
import com.huangjie.utils.PageBean;


public class CategoryDao extends BaseDao<Category> {

    public List<Category> list(Category category, PageBean pageBean) throws Exception {
        String sql = "select * from t_easyui_category ";
        return super.executeQuery(sql,pageBean,Category.class);
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

CategoryAction

package com.huangjie.web;

import java.sql.SQLException;
import java.util.List;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import com.huangjie.Dao.CategoryDao;
import com.huangjie.entity.Category;
import com.huangjie.framework.ActionSupport;
import com.huangjie.framework.ModelDriven;
import com.huangjie.utils.ResponseUtil;


public class CategoryAction extends ActionSupport implements 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/355246
推荐阅读
相关标签
  

闽ICP备14008679号