随笔分类 -  Java EE

1
摘要:step1: git clone https://github.com/intoolswetrust/jd-cli.git step2: mvn install 得到jd-cli.jar 命令行执行: java -jar jd-cli.jar <your_jar_file> 反编译结果: 阅读全文
posted @ 2022-01-07 23:29 justinzhang 阅读(533) 评论(0) 推荐(0) 编辑
摘要:https://github.com/openjdk-mirror/jdk/tree/jdk8u/jdk8u%2Fmaster 选择下载的源码路径: 阅读全文
posted @ 2022-01-02 11:41 justinzhang 阅读(215) 评论(0) 推荐(0) 编辑
摘要:一个Eclipse的工程,在pom中配置了若干依赖,需要将pom中所有的依赖全部打包进一个jar包中,可以选择的方案有maven-assembly-plugin和fatjar。以前采用fatjar进行打包,但是fatjar有不少问题, 1. 最近一次更新是在09年,无法支持新版本的eclipse。 2.支持最高的jdk版本是1.7 3. 打包速度慢(不是一般的慢) 4. 打成的jar包... 阅读全文
posted @ 2015-11-21 13:45 justinzhang 阅读(71782) 评论(2) 推荐(0) 编辑
摘要:从pom的xsi中可以打开描述pom的schema: 可以看到pom中,project的结构: 默认的mvn install生成的jar是不带主类入口的,需要在maven-compile-plugin中设置主类, 4.0.0 com.cetc.di hellocetc 0.0.1-SNAPSHOT jar hellocetc http://maven.... 阅读全文
posted @ 2015-11-18 20:06 justinzhang 阅读(138631) 评论(2) 推荐(2) 编辑
摘要:The web application [FileIO_new_interface] created a ThreadLocal with key of type [java.lang.ThreadLocal] (value [java.lang.ThreadLocal@1c27fa09]) and a value of type [java.lang.Class] (value [class ... 阅读全文
posted @ 2015-11-17 17:37 justinzhang 阅读(4184) 评论(0) 推荐(0) 编辑
摘要:首先修改本地Maven的settings.xml文件,注意标签中的内容: CN OSChina Central ... 阅读全文
posted @ 2015-11-16 16:27 justinzhang 阅读(5462) 评论(0) 推荐(1) 编辑
摘要:dubbo 2.8.4 出现找不到dubbo:annotation的错误,其实这个不会影响程序正确的运行,但是看到有红叉心里肯定非常不爽: 解决办法是,将dubbo-2.8.4.jar包,后缀改成.zip,然后解压: 如果不想对xml进行校验,可以在validation下,设置是否对xml schema进行validation: 阅读全文
posted @ 2015-11-16 16:10 justinzhang 阅读(325) 评论(0) 推荐(0) 编辑
摘要:1. 找不到dubbo2.8.4包的问题 在编译Maven工程的过程中,出现如下问题: Description Resource Path Location Type ArtifactDescriptorException: Failed to read artifact descriptor for com.alibaba:dubbo:jar:2.8.4: UnresolvableModelE... 阅读全文
posted @ 2015-11-12 20:41 justinzhang 阅读(27066) 评论(0) 推荐(1) 编辑
摘要:org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [spring-mybatis.xml]: Initialization of bean failed; nested exception... 阅读全文
posted @ 2015-11-09 11:07 justinzhang 阅读(2572) 评论(0) 推荐(0) 编辑
摘要:在使用eclipse+maven的过程中,遇到一系列问题,先汇总记录如下: 1. 在java工程中,缺少Maven依赖: 这个问题比较棘手,一般都对eclispe的工程结构不是很了解,后来经过长时间的排查,发现在工程路径下有一个.classpath文件,正常情况下,这个文件是这个样子: ... 阅读全文
posted @ 2015-11-06 10:22 justinzhang 阅读(4675) 评论(0) 推荐(0) 编辑
摘要:log4j:WARN No appenders could be found for logger (org.springframework.context.support.ClassPathXmlApplicationContext). log4j:WARN Please initialize the log4j system properly. log4j:WARN See http://... 阅读全文
posted @ 2015-11-03 16:17 justinzhang 阅读(92225) 评论(1) 推荐(0) 编辑
摘要:mybatis-generator下载地址:https://github.com/mybatis/generator/releases/tag/mybatis-generator-1.3.2 下载好后,解压: D:\tools\mybatis-generator-core-1.3.2\lib>dir 驱动器 D 中的卷没有标签。 卷的序列号是 000B-8134 D:\tools\my... 阅读全文
posted @ 2015-10-29 10:42 justinzhang 阅读(1134) 评论(0) 推荐(0) 编辑
摘要:在pom.xml文件中加入: jdk.tools jdk.tools 1.7.0._11 system C:/Program Files/Java/jdk1.7.0_11/lib/tools.jar ${JAVA_HOME}/lib/tools.jar 阅读全文
posted @ 2015-09-30 10:56 justinzhang 阅读(442) 评论(0) 推荐(1) 编辑
摘要:消息来源:http://os.51cto.com/art/201003/190108.htm OpenAM主页连接: http://openam.forgerock.org/ 阅读全文
posted @ 2015-01-15 09:13 justinzhang 阅读(690) 评论(0) 推荐(0) 编辑
摘要:Q: 在eclipse 中,设置为sublime格式时, 在编辑器中,jsp中嵌套的javascript底色非常难看。 A:在如下位置进行设置,Window -> Preferences-> MyEclipse -> Files and Editors -> Javascript -> Editor -> Syntax Coloring -> Background 使用m... 阅读全文
posted @ 2015-01-13 20:33 justinzhang 阅读(2743) 评论(0) 推荐(2) 编辑
摘要:public HttpServletResponse execCmd(String cmd, HttpServletRequest request, HttpServletResponse response) throws IOException { ... 阅读全文
posted @ 2015-01-12 21:04 justinzhang 阅读(1021) 评论(0) 推荐(0) 编辑
摘要:spring 中, action和url的对应关系 在web.xml中,这样配置: spring*.html 由此,我们可以看到,要进入到LoginController,我们需要在浏览器中输入:localhost:8080/springMybatis/background/to_lo... 阅读全文
posted @ 2015-01-12 20:57 justinzhang 阅读(1288) 评论(0) 推荐(0) 编辑
摘要:servlet中, HttpRequestServlent req; req.getRealPath 被废弃,使用this.getServletContext().getRealPath()替代: 阅读全文
posted @ 2015-01-12 20:53 justinzhang 阅读(822) 评论(0) 推荐(0) 编辑
摘要:使用spring get方式,向后台传递参数的时候,出现乱码,网上搜索了好久,最后发现原因是server.xml中默认的配置有问题,修改如下就正确了,图片:文本信息: 阅读全文
posted @ 2015-01-12 20:47 justinzhang 阅读(501) 评论(0) 推荐(0) 编辑
摘要:很久不动java EE了,很多东西似乎都搞完了,今天在搭建环境,跑以前的一个项目时,出现了Address already in use 的错误,这显然是tomcat的端口号被占用了,我的机子上安装了appache和appache Tomcat: 我以前以为这两个同时安装了就会出现错误,今天也没管那么多,因为实验室的机子上没有tomcat,我又想将以前的工程跑起来,所以我就直接装上了appa... 阅读全文
posted @ 2011-09-22 13:36 justinzhang 阅读(29790) 评论(0) 推荐(0) 编辑

1