资源简介
博客项目.rar
代码片段和文件信息
package com.luban.action;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.List;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import com.luban.po.BlogArticle;
import com.luban.po.BlogArticleCategory;
import com.luban.po.PageInfo;
import com.luban.service.BlogArticleCategoryService;
import com.luban.service.BlogArticleService;
import com.luban.service.impl.BlogArticleCategoryServiceImpl;
import com.luban.service.impl.BlogArticleServiceImpl;
/**
*需获取项目视频找老师
javacto.taobao.com
*/
@WebServlet(“*.ba“)
public class BlogArticleAction extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req HttpServletResponse resp)
throws ServletException IOException {
// TODO Auto-generated method stub
doPost(req resp);
}
@Override
protected void doPost(HttpServletRequest req HttpServletResponse resp)
throws ServletException IOException {
// 处理编码
req.setCharacterEncoding(“utf-8“);
resp.setContentType(“text/html;charset=utf-8“);
PrintWriter out = resp.getWriter();
HttpSession session = req.getSession();
// 获得uri
String uri = req.getRequestURI();
// 截取
String url = uri.substring(uri.lastIndexOf(“/“) + 1 uri.indexOf(“.“));
BlogArticleService articleService = new BlogArticleServiceImpl();
if(“query“.equals(url)){
BlogArticleCategoryService articleCategoryService = new BlogArticleCategoryServiceImpl();
PageInfo info = new PageInfo();
BlogArticle article = new BlogArticle();
String currPageNo =req.getParameter(“currPageNo“);
if(null!=currPageNo){
info.setCurrPageNo(Integer.parseInt(currPageNo));
}
String batitle = req.getParameter(“batitle“);
String bacId = req.getParameter(“bacId“);
String bacChildId = req.getParameter(“bacChildId“);
article.setBatitle(batitle);
if(null!=bacId&& !““.equals(bacId)){
article.setBacId(Integer.parseInt(bacId));
}
if(null!=bacChildId &&!““.equals(bacChildId)){
article.setBacChildId(Integer.parseInt(bacChildId));
}
List articleCategory= articleCategoryService.queryAll();
List list =articleService.pageQueryAll(article info);
//获取总条数
int count =articleService.getTotalCount(article);
info.setTotalCount(count);
req.setAttribute(“list“ list);
req.setAttribute(“info“ info);
req.setAttribute(“article“ article);
req.setAttribute(“articleCategory“ articleCategory);
//转发到页面
req.getRequestDispatcher(“/list.jsp“).forward(req resp);
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1431 2018-08-02 21:14 博客项目\Blog\.classpath
文件 556 2018-08-02 21:14 博客项目\Blog\.project
文件 243 2018-08-02 21:14 博客项目\Blog\.settings\org.eclipse.jdt.core.prefs
文件 90 2018-08-02 21:14 博客项目\Blog\.settings\org.eclipse.m2e.core.prefs
文件 3 2018-08-02 21:14 博客项目\Blog\.svn\entries
文件 3 2018-08-02 21:14 博客项目\Blog\.svn\format
文件 1044 2018-08-07 09:25 博客项目\Blog\.svn\pristine\09\094aebacd5586decaa23155cd780e48f8315f6d5.svn-ba
文件 3083 2018-08-07 09:25 博客项目\Blog\.svn\pristine\09\09e96898c6143732d44421cc995e04dfaa0f74be.svn-ba
文件 11100 2018-08-07 09:25 博客项目\Blog\.svn\pristine\0a\0a453299e3f8869a88f0a5e551a3091981c536d5.svn-ba
文件 4276 2018-08-07 09:25 博客项目\Blog\.svn\pristine\0b\0b1fea5398a82834b6999c58ae809d61bd15df0b.svn-ba
文件 1254 2018-08-07 09:25 博客项目\Blog\.svn\pristine\0e\0e0ee1aa2e2741009c3b446b77e9efd9d9bfd42e.svn-ba
文件 972 2018-08-07 09:13 博客项目\Blog\.svn\pristine\0e\0e86d51140325016ec30955933aad8dca2030863.svn-ba
文件 2340 2018-08-07 09:25 博客项目\Blog\.svn\pristine\0e\0ee092e5baa47c9b108a978b6764414ebc7d947a.svn-ba
文件 3682 2018-08-07 09:25 博客项目\Blog\.svn\pristine\16\16f84fdbf5610189be82ffcb956c81f3152d00b4.svn-ba
文件 628707 2018-08-07 09:25 博客项目\Blog\.svn\pristine\1d\1d986a4bbc95175ce199e007c38dd95247f030b4.svn-ba
文件 39142 2018-08-07 09:25 博客项目\Blog\.svn\pristine\1d\1da33ba4aa30bd832106e359c5ee2a3b8681c756.svn-ba
文件 2318 2018-08-07 09:25 博客项目\Blog\.svn\pristine\1f\1f93caa569d29267a998c0be5716a05196f869e5.svn-ba
文件 3092 2018-08-07 09:25 博客项目\Blog\.svn\pristine\1f\1f9b02078fcc870d060e1f28047d322815663318.svn-ba
文件 3568 2018-08-07 09:25 博客项目\Blog\.svn\pristine\20\20874ccc0c12c03b8e9e90b70568cc79f42f74a7.svn-ba
文件 366 2018-08-07 09:25 博客项目\Blog\.svn\pristine\21\21fdec63fc2e1eacb530830fec07ee9d4a1b3199.svn-ba
文件 20245 2018-08-07 09:25 博客项目\Blog\.svn\pristine\22\220991baef0e23a5f750e53f4ad5e1d288e6f37d.svn-ba
文件 11337 2018-08-07 09:25 博客项目\Blog\.svn\pristine\25\25192d17955b13e082ce4f40c20bb4e710608a88.svn-ba
文件 6538 2018-08-07 09:25 博客项目\Blog\.svn\pristine\25\251d2f3e651c64b1809ff015708ce80730718fc4.svn-ba
文件 4426 2018-08-07 09:57 博客项目\Blog\.svn\pristine\26\26ec4d42d64503151c5c331d2e2cd86a1484e47a.svn-ba
文件 142377 2018-08-07 09:25 博客项目\Blog\.svn\pristine\26\26f4b7988f472575b187803bfc3a0278d8cebcb5.svn-ba
文件 2487 2018-08-02 21:14 博客项目\Blog\.svn\pristine\2a\2a3d8418c820ac76f6fdaa35f51e7bbfdd1dff2f.svn-ba
文件 29315 2018-08-07 09:25 博客项目\Blog\.svn\pristine\2c\2cd21b316014c18bd3e0a310dc48533a2fd501c7.svn-ba
文件 68221 2018-08-07 09:25 博客项目\Blog\.svn\pristine\2d\2d78dcafe6034e4eabf59bfbf64b288ab358c6f4.svn-ba
文件 165372 2018-08-07 09:25 博客项目\Blog\.svn\pristine\30\308f5e5450cf24a1242469f92b304ca8f985d862.svn-ba
文件 42654 2018-08-07 09:25 博客项目\Blog\.svn\pristine\32\3266aa049145d9635498ec99ba9a6e1a73b71cac.svn-ba
............此处省略380个文件信息
- 上一篇:DOORS 8.1使用手册(中文版)
- 下一篇:PGP8.1免费版
相关资源
- GBT14213-2008.pdf
- 打飞机_修正版.zip
- openswan-2.6.50.tar.gz
- JSBSim运行文件仿真结果画图脚本.zip
-
ob
jective-C编程全解(第3版).pdf - NDwww.net
- 6.55开发和运行无限点破解.rar
- liaoning.zip
- 精准扶贫大数据平台建设方案V1.0.do
- 起点设备管理软件单机版7.35Reg注册版
- 校园跑腿.zip
- wenku_GUI.exe
- 书签第2版阳宪惠2008[1].10x.pdf
- 11506176电子电气设备的电磁兼容设计、
- 软件测试的艺术原书第3版.pdf
- 新书《无线传感器网络技术》.rar
- BaiduYun3.9.11.rar
- PRML中文版.zip
- 321browser.zip
- 发那科机器人与康耐视视觉的应用.
-
CSS与xm
l的综合运用 - CSS与其他技术 - ReinforcementLearning.pdf
- 银行流水打印软件v2015绿色免费版.r
- anyconnect-win-4.5.03040-core-vpn-predeploy-k9
- 《信息论——基础理论与应用》(傅
- 线性代数及其应用.zip
- 实变函数与泛函分析概要第二版第二
- 交通规划原理(邵春福).pdf
- 云视通授权破解版cancancan.rar
- 百度云管家5.4.4.rar
评论
共有 条评论