程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> JSP-Servlet實現網上BBS項目小案例

JSP-Servlet實現網上BBS項目小案例

編輯:關於JSP

JSP-Servlet實現網上BBS項目小案例


項目功能:實現一般bbs論壇項目的功能,發表說說 其他好友可以評論

一、數據庫的創建:
這裡寫圖片描述
sql語句如下:

    create table `bbs`.`user`(
        `userid` INT not null auto_increment,
       `username` CHAR(20) not null,
       `userpassword` CHAR(20) not null,
        primary key (`userid`)
    );

    create unique index `PRIMARY` on `bbs`.`user`(`userid`);

    create table `bbs`.`article`(
        `articleid` INT not null auto_increment,
       `title` CHAR(50) not null,
       `context` CHAR(200) not null,
       `articletime` TIME not null,
       `userid` INT not null,
        primary key (`articleid`)
    );

    alter table `bbs`.`article`  
        add index `article_user_fk`(`userid`), 
        add constraint `article_user_fk` 
        foreign key (`userid`) 
        references `bbs`.`user`(`userid`);
    create unique index `PRIMARY` on `bbs`.`article`(`articleid`);
    create index `article_user_fk` on `bbs`.`article`(`userid`);

    create table `bbs`.`comment`(
        `commentid` INT not null auto_increment,
       `commenttext` CHAR(200) not null,
       `commenttime` TIME not null,
       `userid` INT not null,
       `articleid` INT not null,
        primary key (`commentid`)
    );

    alter table `bbs`.`comment`  
        add index `comment_article_fk`(`articleid`), 
        add constraint `comment_article_fk` 
        foreign key (`articleid`) 
        references `bbs`.`article`(`articleid`);
    alter table `bbs`.`comment`  
        add index `comment_user_fk`(`userid`), 
        add constraint `comment_user_fk` 
        foreign key (`userid`) 
        references `bbs`.`user`(`userid`);
    create unique index `PRIMARY` on `bbs`.`comment`(`commentid`);
    create index `comment_user_fk` on `bbs`.`comment`(`userid`);
    create index `comment_article_fk` on `bbs`.`comment`(`articleid`);

二、項目代碼如下:
這裡寫圖片描述

代碼的主要實現:解決中文亂碼的問題:

public class MyFilter implements Filter {

    private String encoding=null;  

    public void doFilter(ServletRequest arg0, ServletResponse arg1,
            FilterChain arg2) throws IOException, ServletException {
        arg0.setCharacterEncoding(encoding);   
        arg2.doFilter(arg0, arg1);  
    }

    public void init(FilterConfig arg0) throws ServletException {
        encoding = arg0.getInitParameter(encoding); //獲得配置文件中的encoding
    }

    public void destroy() {

    }
}

在web.xml文件中配置


    
        MyFilter
        com.xuliugen.util.MyFilter
        
            encoding
            utf-8
        
    
    
        MyFilter
        /*
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved