摘要: [org.apache.struts2.dispatcher.Dispatcher]Removing file uploads D:\MyRepository\servers\tomcat7\work\Catalina\localhost\lthy-arms\upload_43617ceb_146a 阅读全文
posted @ 2014-06-17 10:21 瓜瓜先生 阅读(4) 评论(0) 推荐(0)
摘要: 孙宇先生那个右下角弹出框也是乱码,情况一样。 底层数据库 utf-8 spring过滤器 utf-8 tomcat utf-8 回传数据字符设置response.setCharacterEncoding("UTF-8"); 回传界面设置 response.setContentType("text/h 阅读全文
posted @ 2014-06-04 19:52 瓜瓜先生 阅读(13) 评论(0) 推荐(0)
摘要: 第一个方法解决方案: listener.ora是服务器端的配置oracle的文件。 后来将listener.ora的这一行注释掉,就行了,, (PROGRAM = extproc)修改为:SID_LIST_LISTENER = (SID_LIST = (SID_DESC = (SID_NAME = 阅读全文
posted @ 2014-06-04 16:59 瓜瓜先生 阅读(16) 评论(0) 推荐(0)
摘要: 创建段存储过程: create procedure select_p (person_pid in NUMBER ,person_name out varchar2) AS begin select pname into person_name from person where pid=perso 阅读全文
posted @ 2014-05-06 17:52 瓜瓜先生 阅读(40) 评论(0) 推荐(0)
摘要: 核心提示:SqlMap的配置是iBatis中应用的核心。这部分任务占据了iBatis开发的70的工作量。 1、命名空间: sqlMap namespace=Account,在此空间外要引用此空间的元素,则需要加上命名空间名。 2、实体的别名: typeAlias alias=Account type 阅读全文
posted @ 2014-05-05 16:31 瓜瓜先生 阅读(21) 评论(0) 推荐(0)
摘要: 在学习《Maven实战中》,55页报出了: 异常1:Cannot load implementation hint 'org.apache.maven.plugins.shade.resource.Main festResourceTransformer' 解决办法:找到官网插件配置,https:/ 阅读全文
posted @ 2014-04-28 13:09 瓜瓜先生 阅读(10) 评论(0) 推荐(0)
摘要: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set 这是hibernate4.3.5 小实例报错:办法 再hibernateUtil中创建sessionFactory时: 1 >Configu 阅读全文
posted @ 2014-04-24 16:25 瓜瓜先生 阅读(7) 评论(0) 推荐(0)
摘要: SQL语句优化技术分析 一·操作符优化 1·IN操作符 用IN写出的Sql优点是比较容易写及清晰易懂,但是用IN的SQL性能是比较低的,从Oracle执行步骤分析用IN的SQL 与不用IN的SQL语句有以下区别: ORACLE试图将其转换为多个表的连接,如果转换不成则先执行IN里面的子查询,再查询外 阅读全文
posted @ 2014-04-22 18:21 瓜瓜先生 阅读(9) 评论(0) 推荐(0)
摘要: spring中Bean的生命周期 实例化 》填充属性 》调用BeanNameAware的setBeanName()方法 》调用BeanFactoryAware的 setBeanFactory()方法 》调用ApplicationContextAware的setApplicationContext() 阅读全文
posted @ 2014-04-21 11:22 瓜瓜先生 阅读(9) 评论(0) 推荐(0)
摘要: 在官网有安装debug教程:摘下来部分: To install the Zend Debugger on your server: Download the Studio Web Debugger package which corresponds to your operating system  阅读全文
posted @ 2014-03-13 02:55 瓜瓜先生 阅读(8) 评论(0) 推荐(0)