JAVA
文章平均质量分 59
简单快乐200913
简简单单,幸福快乐
展开
-
Java使用Jsch与sftp服务器实现ssh免密登录
java使用jsch与sftp服务器实现免密登录原创 2024-03-20 15:36:44 · 1362 阅读 · 0 评论 -
java中方法的参数传递机制
java中方法的参数传递机制引用文章:http://www.cnblogs.com/lixiaolun/p/4311863.html问:当一个对象被当作参数传递到一个方法后,此方法可改变这个对象的属性,并可返回变化后的结果,那么这里到底是值传递还是引用传递? 答:是值传递。Java 编程语言只有值传递参数。当一个对象实例作为一个参数被传递到方法中时,参数的值就是该对转载 2017-07-04 10:07:31 · 515 阅读 · 0 评论 -
严重: A child container failed during start【tomcat版本7修改为tomcat6版本就解决啦】
十一月 10, 2016 3:56:42 下午 org.apache.catalina.core.ContainerBase startInternal严重: A child container failed during startjava.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException原创 2016-11-11 14:54:51 · 1241 阅读 · 0 评论 -
求助】安卓开发异常 java.lang.Throwable: stack dump
05-05 18:22:02.584 25252-25772/? E/HardwareRenderer: setHWUICacheConfig must be called in UI thread. Skip!05-05 18:22:02.584 25252-25772/? W/System.err: java.lang.Throwable: stack dump05-05 18:22:原创 2016-05-05 18:37:34 · 5882 阅读 · 1 评论 -
org.apache.ibatis.reflection.ReflectionException: There is no getter for property
严重: Servlet.service() for servlet frontDispatcher threw exceptionorg.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'createdatenew' in 'class com.zhongxin.securi原创 2015-09-17 13:00:51 · 2121 阅读 · 1 评论 -
求一个整数的组合数算法(java)
求一个序列,其中任意n个数字相加不会等于该序列里的其他值,任意一个数字的倍数不等于该序列里的其他值http://blog.csdn.net/codearhat/article/details/8554326原创 2014-04-19 15:02:44 · 2523 阅读 · 0 评论 -
java.io.IOException: Cannot run program "C:\Program": CreateProcess error=2,
最近研究Java+FlexPaper+swfTools仿百度文库文档在线预览系统设计与实现在网上找了些教程,按照步骤安装openoffice、swfTools、flexpaper,其中在安装openoffice的时候,安装在C:\Program Files,结果在office文件转pdf方法运行的时候Process pro = Runtime.getRuntime().exec(c原创 2014-04-03 11:27:54 · 33114 阅读 · 0 评论 -
Struts2异常!!!(原因LoginAction没有实现相应接口:SessionAware)
Struts Problem ReportStruts has detected an unhandled exception: Messages: File:com/pb/action/LoginAction.javaLine number:37Stacktracesjava.lang.NullPoint原创 2013-12-16 11:41:08 · 1237 阅读 · 0 评论 -
The APR based Apache Tomcat Native library which allows optimal performance in production environmen
十二月 14, 2013 11:00:25 上午 org.apache.catalina.core.AprLifecycleListener initINFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found转载 2013-12-14 11:16:26 · 1210 阅读 · 0 评论 -
Struts2中的Unable to load configuration错误的分析与解决方法
当我们遇到 Unable to load configuration. 这样的错误时,可以根据具体的错误提示找出错误的原因。Unable to load configuration. - interceptor-ref - file:/D:/Java/apache-tomcat-6.0.32/webapps/examquestions/WEB-INF/classes/stru转载 2013-12-14 11:08:08 · 1727 阅读 · 0 评论 -
Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/mail/util/LineInputStream
Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/mail/util/LineInputStream如果你用myEclipse进行开发的话,运行时可能会出现以下的错误:Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/m转载 2013-12-11 18:09:55 · 1082 阅读 · 0 评论 -
第一个Spring
第一步:下载Spring 、建立一个java工程,导入所需的jar包(spring.jar、log4j.jar以及lib\jakarta-commons目录下的所有jar包)第二步:工程src目录下添加log4j.properties# rootLogger是所有日志的根日志,修改该日志属性将对所有日志起作用# 下面的属性配置中,所有日志的输出级别是info,输出源是console原创 2013-12-03 17:34:02 · 798 阅读 · 0 评论 -
求解?Unable to access java.sql.DatabaseMetaData to determine appropriate Dialect to use
SLF4J: The requested version 1.6 by your slf4j binding is not compatible with [1.5.5, 1.5.6, 1.5.7, 1.5.8]SLF4J: See http://www.slf4j.org/codes.html#version_mismatch for further details.log4j:WARN原创 2013-11-10 11:57:07 · 3109 阅读 · 1 评论 -
hibernate中的hbm的schema,用户名密码更换
由于工作需要,需要经常更换oracle用户名和密码,而用工具生成hbm配置文件时不知道怎么回事会生成对应用户名下的schema=‘用户名’,而只要写上schema=‘用户名’时,无论hibernate的配置文件hibernate.cfg.xml怎么配置用户名,他都会使用schema配置的用户名。 只有把影射文件中的schema=‘用户名’删除了,那么他会默认的使用hibernate中转载 2013-11-10 11:18:35 · 1381 阅读 · 0 评论