`
文章列表
来源:http://www.myexception.cn/program/1054069.html 1、ZIP文件解压的时候出现错误:‍Negative seek offset    原因:把rar文件直接改为ZIP    必须要 重新压缩为ZIP文件 不能直接修改文件名 2、Exception in thread "main" java.lang.NoSuchMethodError: org.apache.tools.zip.ZipEntry: method <init>()V not found    原因:缺少ant.jar包或ant.jar版 ...
SpringMVC系列之一、集成JSP SpringMVC系列之二、集成FreeMarker SpringMVC系列之三、集成Log4j 和SpringMVC系列之一、集成JSP类似,改动的地方: 1. 在pom.xml文件中添加FreeMarker依赖: <properties> <freemarker.version>2.3.19</freemarker.version> </properties> <dependencies> <dependency> &l ...
1. 继承结构: HttpServletBean把普通的Servlet包装成Spring的bean,这样可以将init-param的值作为bean的属性注入。 FrameworkServlet完成了Spring的容器(WebApplicationContext)的初始化工作,关键方法是initWebApplicationContext()方法,并放到Servlet对象之中。 2. 初始化组件 用户没有配置组件时,将使用预定义的值。这里以HandlerMappings为例,其它组件的初始化类似: // 初始化 private void initHandlerMa ...
SpringMVC系列之一、集成JSP SpringMVC系列之二、集成FreeMarker SpringMVC系列之三、集成Log4j 1. maven工程的pom.xml: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache ...
一. 运动 1. 每天必须运动30分钟以后,温和的有氧运动,活动全身 2. 每隔1个半小时,起身活动腰部,颈部,肩部 3. 经常活动手指,由于手指长期握鼠标,会造成末梢神经炎 4. 经常眨眼睛,可以缓解眼部肌肉的紧张,而且促进眼部血液流通,是眼睛表面更加湿润,减少干涩,有效的保护眼睛 5. 点缓解眼疲劳的眼药水时,请认真看说明书,按剂量使用,切忌不可超剂量使用,对眼睛有危害,最好通过眨眼和做眼保健操,缓解眼部疲劳 6. 为防止小腹赘肉,可以坐椅子上,上身挺直,收缩小腹,分3组,每组20次,经常这样,可以有效防止小腹赘肉的积累 二. 饮食 1. 早餐必须吃,酸奶或豆浆配面包,等食 ...
1. 分隔符 // 名称分隔符,Windows系统为反斜杠'\\',Linux系统为斜杠'/' public static final char separatorChar = fs.getSeparator(); // 名称分隔字符串 public static final String separator = "" + separatorChar; // 路径分隔符,Windows系统为分号';',Linux系统为冒号':' public static final char pathSeparator ...
用来搭建FTP服务器的软件有很多,如Windows自带的FTP组件,Xlight, FileZilla, Server-U,Linux平台的vsftpd等。 FileZilla Server是个小巧的FTP Server服务器软件,占用资源少。下面简要介绍下FileZilla的配置: 1. 启动时,输入服务器地址、端口号和管理密码(可为空):    2. 系统设置:    在主界面点击[Settings]图标,进入设置页,一般保持默认即可:       3. 用户及共享设置:    ① 在主界面点击[Users]或[Groups],以Users为例:          ② ...
a. null是关键字,不能用作函数或变量的名称;undefined是Global对象的一个属性: alert('undefined' in window); // true alert(undefined in window); // true b. null是特殊的object(空对象, 没有任何属性和方法);undefined是undefined类型的值,未定义的值和定义未赋值的为undefined;NaN是一种特殊的number: document.writeln(typeof null); // object document.writeln(typeof undef ...
所有的Java枚举类型都继承自该抽象类。我们用关键字enum来声明枚举类型,不可以通过显式继承该抽象类的方式来声明。 public abstract class Enum<E extends Enum<E>> implements Comparable<E>, Serializable { private final String name; // 当前枚举常量名称 public final String name() { return name; } priva ...
1. 遍历网络接口来获取IP地址: Enumeration<NetworkInterface> itfList = NetworkInterface.getNetworkInterfaces(); if (itfList == null) { System.out.println("--No interfaces found--"); } else { while (itfList.hasMoreElements()) { NetworkInterface itf = itfList.nextElement(); ...
准备工作: a. 在pom.xml中配置jetty插件: <plugins> <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty-plugin</artifactId> <version>6.1.26</version> <configuration> <webAppSourceDirectory>src/main/webapp</webApp ...

testng 测试

    博客分类:
  • test
1. 在pom.xml中添加testng引用: <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.4</version> </dependency> 2. 测试基类,构筑testng的spring上下文: import org.springframework.test.context.ContextConfiguration; import org.s ...
   命令行方式:首先切换工作目录到当前工程根目录,也就是pom.xml所在的目录。    i. 在编译、打包或安装之前,确保工程没有编译错误,依赖包也可用。    ii. 在父项目上运行编译、打包或安装命令,将会根据依赖关系依次打包所有的子项目;如果仅仅是编译、打包或安装某个子项目,确保依赖的包已经打好或者在本地(远程)仓库中存在。 1. 清理 mvn clean 使用的插件是:maven-clean-plugin 2. 编译 mvn compile 使用的插件是: maven-resources-plugin (处理资源文件) maven-compiler-plugin (编译源代码) ...

Java 编程 笔记

    博客分类:
  • java
1. 方法的连续调用而没有判断,很容易抛出NullPointerException等异常 String infant = session.getAttribute("giant").toString(); session.getAttribute("giant")很可能是null值,再调用toString()会产生空指针异常。 解决方法: String infant = null; Object plantation = session.getAttribute("giant"); if (plantation != ...
SVN命令行只在1.7及以上版本上提供。 1. 安装的时候,选中command line client tools: 2. 在命令行中输入svn help查看svn的帮助,svn help subcommand查看子命令的帮助: 3. 导出svn目录下的所有文件和文件夹:(不包含.svn目录和.svn子目录) svn export --force E:\MyProject E:\temporay 4. 打包jar文件 jar -cfm E:\myjars\MyProject.jar E:\MyProject\MANIFEST.MF E:\temporary\*.* ...
Global site tag (gtag.js) - Google Analytics