资源简介
基于jsp+mvc+mysql的个人博客网站,包括前段页面,后台Java代码,界面友好,可以实现登录注册功能,浏览博客,发表博客,个人信息主页等功能。
代码片段和文件信息
package com.action;
import java.io.IOException;
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 com.entries.Approve;
import com.service.IApproveService;
/**
* Servlet implementation class ApproveAction
*/
@WebServlet(“/ApproveAction“)
public class ApproveAction extends HttpServlet {
private static final long serialVersionUID = 1L;
IApproveService approveservice;
/**
* @see HttpServlet#HttpServlet()
*/
public ApproveAction() {
super();
// TODO Auto-generated constructor stub
}
/**
* @see HttpServlet#doGet(HttpServletRequest request HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request HttpServletResponse response) throws ServletException IOException {
// TODO Auto-generated method stub
String method = request.getParameter(“method“);
System.out.println(method);
if(“approve“.equals(method))
//点赞
this.approve(request response);
else if(“getapprove“.equals(method))
//取消赞
this.disapprove(request response);
}
protected void approve(HttpServletRequest request HttpServletResponse response) throws ServletException IOException {
int text_id = Integer.parseInt(request.getParameter(“approve_text_id“));
int user_id = Integer.parseInt(request.getParameter(“approve_user_id“));
Approve approve = new Approve(user_idtext_id);
int flag1 = approveservice.addApprove(approve);
if(flag1==0){
System.out.println(“添加点赞信息失败“);
}else{
System.out.println(“添加点赞信息成功“);
}
int flag2 = approveservice.approveText(approve);
if(flag2==0){
System.out.println(“点赞文章失败“);
}else{
System.out.println(“点赞文章成功“);
}
}
protected void disapprove(HttpServletRequest request HttpServletResponse response) throws ServletException IOException {
int text_id = Integer.parseInt(request.getParameter(“approve_text_id“));
int user_id = Integer.parseInt(request.getParameter(“approve_user_id“));
Approve approve = new Approve(user_idtext_id);
int flag = approveservice.disApprove(approve);
}
/**
* @see HttpServlet#doPost(HttpServletRequest request HttpServletResponse response)
*/
protected void doPost(HttpServletRequest request HttpServletResponse response) throws ServletException IOException {
// TODO Auto-generated method stub
doGet(request response);
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-01-04 19:46 MyBlog\
文件 1085 2019-01-04 12:10 MyBlog\.classpath
文件 906 2019-01-04 10:35 MyBlog\.project
目录 0 2019-01-05 11:16 MyBlog\.settings\
文件 567 2019-01-04 10:35 MyBlog\.settings\.jsdtscope
文件 69 2019-01-09 15:44 MyBlog\.settings\org.eclipse.core.resources.prefs
文件 364 2019-01-04 10:35 MyBlog\.settings\org.eclipse.jdt.core.prefs
文件 470 2019-01-04 10:35 MyBlog\.settings\org.eclipse.wst.common.component
文件 345 2019-01-04 10:35 MyBlog\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 49 2019-01-04 10:35 MyBlog\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2019-01-04 10:35 MyBlog\.settings\org.eclipse.wst.jsdt.ui.superType.name
文件 70768 2018-06-30 19:14 MyBlog\Rock持久层超轻量级框架.CHM
目录 0 2019-01-08 12:12 MyBlog\WebContent\
目录 0 2019-01-04 10:35 MyBlog\WebContent\me
文件 39 2019-01-04 10:35 MyBlog\WebContent\me
目录 0 2019-01-08 12:12 MyBlog\WebContent\WEB-INF\
目录 0 2019-01-07 12:45 MyBlog\WebContent\WEB-INF\lib\
文件 56290 2019-01-07 12:45 MyBlog\WebContent\WEB-INF\lib\activation.jar
文件 608376 2019-01-04 15:31 MyBlog\WebContent\WEB-INF\lib\c3p0-0.9.1.jar
文件 231320 2019-01-04 15:31 MyBlog\WebContent\WEB-INF\lib\commons-beanutils-1.8.0.jar
文件 232019 2019-01-04 15:31 MyBlog\WebContent\WEB-INF\lib\commons-beanutils-1.8.3.jar
文件 559366 2019-01-04 15:31 MyBlog\WebContent\WEB-INF\lib\commons-collections-3.1.jar
文件 57779 2019-01-04 15:31 MyBlog\WebContent\WEB-INF\lib\commons-fileupload-1.2.1.jar
文件 68622 2019-01-04 15:31 MyBlog\WebContent\WEB-INF\lib\commons-fileupload-1.3.jar
文件 109043 2019-01-04 15:31 MyBlog\WebContent\WEB-INF\lib\commons-io-1.4.jar
文件 185140 2019-01-04 15:31 MyBlog\WebContent\WEB-INF\lib\commons-io-2.4.jar
文件 261809 2019-01-04 15:31 MyBlog\WebContent\WEB-INF\lib\commons-lang-2.4.jar
文件 60686 2019-01-04 15:31 MyBlog\WebContent\WEB-INF\lib\commons-logging-1.1.1.jar
文件 86487 2019-01-04 15:31 MyBlog\WebContent\WEB-INF\lib\ezmorph-1.0.6.jar
文件 61243 2019-01-04 15:31 MyBlog\WebContent\WEB-INF\lib\fckeditor-java-2.5.jar
文件 10862 2019-01-04 15:31 MyBlog\WebContent\WEB-INF\lib\imageinfo-1.9.jar
............此处省略188个文件信息
相关资源
- Myeclipse+Tomcat+SQL Server 开发javaweb网站
- JSP+SQL房屋租赁管理信息系统JDBC(源代
- JSP网上书店完整源代码274692
- 基于JSP个人博客系统的设计与实现
- JSP+SQL学生作品展示系统
- 服饰网站jsp
- springmvc+spring+hibernate集成jar包
- jsphtml 好看的10套模板
- 在线家教网毕业设计基于Myeclipse设计
- jsp+mysql的网上书店源代码
- 校友录网站 JavaWeb SpringMVC MyBatis
- Jsp实用教程第三版耿祥义
- JSP项目开发案例全程实录第2版完整源
- 计算机系毕业设计(本科)- 基于Js
- 基于 Servlet+jsp+mysql 开发 javaWeb 学生宿
- JAVA JSP+MYSQL购物网站 源代码 论文
- 基于jsp的毕业设计选题系统
- 基于jsp+mysql的二手物品交易系统.rar
- jsp转pdf项目
- 公交车查询系统 java 毕业设计 jsp s
- JavaWeb操作hadoop2.6 HDFS从页面上传,,
- 商场商户管理系统
- 员工出差管理系统
- javaEE_Servlet_MySql企业员工信息管理系统
- jsp小小商城
- jspWebsocket 实现web实时通讯
- 一个简单的jsp+servlet实现的增删改查适
- 购物商城设计参考小米商城(boostra
- JAVA web开发技术教程源码-张娜主编
- java水果超市系统SpringMVC-Mybatis后台整
评论
共有 条评论