javaee-blog icon indicating copy to clipboard operation
javaee-blog copied to clipboard

基于jsp/servlet的个人博客网站

Results 7 javaee-blog issues
Sort by recently updated
recently updated
newest added

刚学完jsp,看到这个想研究一下,默认打开的是index.jsp但是报错http:500 提示这行有错,能否教我一下原因和怎么处理 message:An exception occurred processing [/index.jsp] at line [10] Description The server encountered an unexpected condition that prevented it from fulfilling the request. Exception org.apache.jasper.JasperException: An exception occurred processing...

您好,我把项目克隆过来,然后把数据库配置好,怎样才能进入登录页面呢?目前启动tomcat只能看到首页,求指教

刚学了些jsp/servlet,想在github上找源码看看,恰好找到你的这个项目。 大概两天时间,项目一直报错。 起初是我对c3p0与数据库之间的一些配置有问题,后来通过网上查找资料解决了问题。 起码首页能进去了。 后来的问题一直不能解决。一直是空指针异常。 at blog.daoImpl.ArticleDaoImpl.getColumAndCount(ArticleDaoImpl.java:107) at blog.service.ArticleService.getSortAndCount(ArticleService.java:143) at blog.servlet.LoginServlet.doGet(LoginServlet.java:34) at blog.filter.VisitFilter.doFilter(VisitFilter.java:68) at blog.filter.CodeFilter.doFilter(CodeFilter.java:41) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) at java.lang.Thread.run(Thread.java:748) 请问能发邮箱,或者其它方式,跟你深入探讨一下吗?

作为一名新手,读了您的代码,收益很大,但里面有些功能不能实现,仔细阅读后发现问题并解决,在此提出,希望能对您有帮助,所说有误请见谅。 **1.点赞、评论功能不能实现** 原因:发送新cookie错误 存在文件:所有设置cookie的Java文件,主要在blog.ajax包下 我的改正:所有Cookie cookie = new Cookie("star_arti" + id, System.currentTimeMillis() + " ");中的最后引号的空格删去,即Cookie cookie = new Cookie("star_arti" + id, System.currentTimeMillis() + ""); **2.更新文章后不能删除原有文章** 原因:edit.jsp文件表单中设置id为disable,id没有被提交,最后导致数据库删除失败 存在文件:admin文件夹下edit.jsp文件 我的改正:将disable该问readonly,即 input type="text"...

![mvpc 7omrc 5_y9z _4 gti](https://user-images.githubusercontent.com/40221949/41328116-07213a5a-6ef9-11e8-8183-ad9f7415d71f.png)

大多jsp和HTML中都导入了 signin.css 文件,但是在项目中并没有找到,请问下是没有放在项目中吗?