JAVAEE
折柳君
编程有路勤为径,码海无涯苦作舟。
展开
-
log4j日志的使用
public static void main(String[] args) { SimpleLayout layout=new SimpleLayout(); ConsoleAppender appender=new ConsoleAppender(layout); Logger log=Logger.getLogger(Test.class); log.addAppender(appe原创 2015-03-26 22:16:13 · 460 阅读 · 0 评论 -
手动字符串拼接成JSON
Insert title herefunction Car(sColor,iDoors,iMpg) { this.color = sColor; this.doors = iDoors; this.mpg = iMpg; this.psger = new Array("Mike","John"); } Car.prototype.addPsger = functio原创 2015-03-23 21:55:42 · 9937 阅读 · 0 评论 -
eclipse中 起动tomcat时报Multiple Contexts have a path of "/shopping"
转载地址:http://www.educity.cn/wenda/469168.htmleclipse中 启动tomcat时报Multiple Contexts have a path of "/shopping". 这个是由于你的server服务器中的server.xml文件 中关于同一个工程配置了多个的原因,删除多余的就可以了。 不要把其他工程的也给删除了转载 2015-03-24 09:28:40 · 520 阅读 · 0 评论 -
严重: Exception starting filter struts2解决方法!
问题出现:严重: Exception starting filter struts2java.lang.ClassNotFoundException: prg.apache.struts2.dispatcher.FilterDispatcherat org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoa原创 2015-06-02 10:45:01 · 1848 阅读 · 0 评论 -
myEclipse中的web项目直接引入到eclipse中运行
转载:http://blog.163.com/lfsyhuangaigang@126/blog/static/774366702013413112547398/将myeclipse中开发的动态web项目直接引入到eclipse中继续开发,启动tomcat时会发出警告,更重的问题是你想启动的项目不知哪里去了,没有读取到配置文件: 警告: [SetPropertiesRule]{转载 2015-05-26 10:37:26 · 690 阅读 · 0 评论 -
JAVA泛型方法的声明与实现
package chenqian.generic;public class GernericMethodTest { public static void printArray(T inputArrays[]){ /*1.遍历数组*/ for(T array:inputArrays){ System.out.print(array); } System.out.pr原创 2015-09-28 21:18:35 · 6307 阅读 · 0 评论 -
JAVA枚举详解
/** * * @author chenqian * @date 2016年5月26日 * @TestEnum.java * 枚举用法详解 */public class TestEnum { /** * 普通枚举 * @author chenqian * @date 2016年5月26日 * @ColorEnum.java */ public en原创 2016-06-08 15:19:37 · 422 阅读 · 0 评论 -
面试题:如何在一个Interger类型的List集合中添加字符串?
通常在面试的时候有面试官为了考察你的基础知识,会告诉你如何在Interger类型的list集合中添加字符串到集合中?通常如果直接通过add方法添加是会报错的,范型约束的产生在编译阶段,那么我们是否能够绕过编译,在运行阶段添加一个int类型的数据呢,答案是肯定的。public class Reflection { static List<Integer> lis...原创 2019-05-30 17:54:54 · 1934 阅读 · 1 评论