
java项目笔记
刺骨寒风刺
敬畏,感恩
展开
-
com.sun.org.apache.xml.internal.security.utils does not exist问题的解决
方法一:网上大神的回答:自己写的程序是不建议用com.sun这个玩意儿的。。这东西属于“Deprecated and restricted API”。。而且各种com.sun的包现在都有替代品。。 如果是公司的老项目非用不可,可以用eclipse导入maven,properties-> Java Compiler -> Errors/Warnings -> Deprecated...原创 2018-03-06 20:43:35 · 9335 阅读 · 1 评论 -
eclipse java项目加快build
原创 2018-02-28 16:13:10 · 468 阅读 · 0 评论 -
eclipse java web项目的整体环境调整
原创 2018-02-28 16:33:06 · 283 阅读 · 0 评论 -
eclipse java web项目数据库配置文件添加
首先创建一个jdbc的file添加下面的代码:jdbc.driver=com.mysql.jdbc.Driverjdbc.url=jdbc:mysql://127.0.0.1:3306/你的项目名?useUnicode=true&characterEncoding=utf8jdbc.username=xxxjdbc.password=xxx...原创 2018-02-28 16:43:32 · 10484 阅读 · 0 评论 -
eclipse java web项目日志输出
log4j.rootLogger=DEBUG, Console #Console log4j.appender.Console=org.apache.log4j.ConsoleAppender log4j.appender.Console.layout=org.apache.log4j.PatternLayout log4j.appender.Console.layout.Conversi...原创 2018-02-28 16:49:51 · 3079 阅读 · 0 评论 -
maven 自定义命令笔记(jetty安装 运行)
安装,跳过多模块测试clean compile install -Dmaven.test.skip=trueclean jetty:run -DskioTests -Djetty.port=8081原创 2017-12-05 11:40:33 · 390 阅读 · 0 评论