Eclipse : Neon Release (4.6.0) 项目开发解决方案随笔

来源:互联网 发布:淘宝上的迪奥是正品吗 编辑:程序博客网 时间:2024/05/22 12:23

Exception report


  • The server encountered an internal error that prevented it from fulfilling this request.

译:服务器遇到一个内部错误,阻止它完成这个请求。

解决方案:

  1. 查看message部分提示,返回代码检查

  • Invalid directive

译:无效的指令。

解决方案:

  1. 查看message部分提示,返回代码查看是否存在未调用或未完成的代码。

  • Page directive: illegal to have multiple occurrences of contentType with different values (old: text/html; charset=utf-8, new: text/html; charset=ISO-8859-1)

译:语法错误,存在与contentType不同的值。例如:(老:text / html;charset = utf - 8,新:text / html;charset = iso - 8859 - 1)

解决方案:

  1. 返回代码查看contentType部分的值,删除现有的值或修改成统一的contentType。

  • An exception occurred processing JSP page /jsp/index.jsp at line 87

译:发生异常处理JSP页面/ JSP /索引。jsp在第x行

解决方案:

  1. 返回代码查看提示所在行,修改异常界面代码或注释本段代码。

数据库模块


  • Mysql文件和SqlServer文件互相转换

http://www.cnblogs.com/losesea/archive/2012/11/08/2760536.html

  • ODBC下载

http://download.csdn.net/download/zp8126/1834898


JSP模块


  • JSP设置默认页面编码格式为utf-8

Windows —> Preferences —> Web —> JSP Files —> Encoding : ISO 10646/Unicode(UTF-8)

如图所示

1 0