学习笔记
Java大健客
这个作者很懒,什么都没留下…
展开
-
【学习笔记】如何查看Struts2文档
一、打开从官网下载的struts-2.3.34-all.zip,解压二、打开struts-2.3.34\docs\docs下的index.html三、选择主页的guides选项 四、选择需要查看的选项 Interceptors:里面是Struts2内置的拦截器,可以直接使用Results:里面包括了Struts2配置中的<result>标签详解 --R...原创 2018-05-30 15:22:42 · 830 阅读 · 0 评论 -
【java异常分析】java.sql.SQLException
java.sql.SQLException: Access denied for user '?????????'@'localhost' ....主要原因是没有用户名,原因之一是jdbc.properties文件中用户名的属性名设置为“username”,这个属性会和jvm中的username属性冲突(网上看到的,有误可以留下评论)。所以不可以使用“username”当做用户名的属性名,可以改...原创 2018-06-07 13:20:50 · 9217 阅读 · 0 评论 -
【java异常分析】org.mybatis.spring.MyBatisSystemException
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'offset' not found. Available parameters are [arg1, arg0, param1, param2] at org.m...原创 2018-06-07 14:16:12 · 1771 阅读 · 0 评论 -
【学习笔记】Struts2整合CKeditor插件
一、配置环境 环境:eclipse-oxygen,Tomcat9,jdk1.8,struts-2.3.34,ckeditor_4.9.2_full二、创建项目 1.新建Dynamic Web Project 2.导入struts2的相关jar包 3.配置web.xml <filter> <filter-name>struts2</filter...原创 2018-05-31 19:59:09 · 331 阅读 · 1 评论 -
【java异常分析】java.util.zip.ZipException
java.util.zip.ZipException: invalid LOC header (bad signature) at java.util.zip.ZipFile.read(Native Method) at java.util.zip.ZipFile.access$1400(ZipFile.java:56) at java.util.zip.ZipFi...原创 2018-06-02 16:00:33 · 5699 阅读 · 0 评论