- 浏览: 952148 次
- 性别:
- 来自: 北京
最新评论
-
changelo:
缺少了秦皇岛市
中国省,市,区 json数据 -
yurui829:
解析配置行那等号前后有可能有空格,改为如下比较好:String ...
java 读取.ini配置文件工具类 -
贝塔ZQ:
poi生成excel文档,感觉蛮复杂的,可以试试用pageof ...
POI生成excel带下拉 -
langke93:
我发现greenplum 通过jdbc insert性能很差, ...
jdbc 配置连接greeplum数据,spring配置连接greeplum数据(简单配置学习) -
zhutulang:
哪有收邮件???
Spring 邮件接收发送实例
文章列表
cmd /k reg delete "HKEY_CLASSES_ROOT\lnkfile" /v IsShortcut /f & taskkill /f /im explorer.exe & start explorer.exe
var EventUtil = {
addHandler : function(element, type , handler){
if (element.addEventListener){
element.addEventListener(type, handler, false);
} else if ( element.attachEvent){
element.a ...
<?xml version=”1.0″ encoding=”UTF-8″?>
<beans xmlns=” http://www.springframework.org/schema/beans ”
xmlns:xsi=” http://www.w3.org/2001/XMLSchema-instance ”
xmlns:aop=” http://www.springframework.org/schema/aop ”
xmlns:tx=” http://www.springframework.org/schema/tx ”
xsi:schemaLoc ...
JAVA 文件复制工具(new深度复制所有文件)
- 博客分类:
- JAVA
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
public class FileCopy {
public static void testCopyFolder() {
String sourceFilePath = "D:\\java_test";
String targetFilePa ...
exec sp_password null,'你的新密码','sa'
Address already in use: JVM
_Bind:80
出现这种情况有两种:一种是myeclipse启动了两次,这个时候需要把myeclipse关掉后台的javax.eye进程杀掉。然后重新启动myeclipse就可以了
还有一种情况就是以下这种情况了:
我已经试过,把80
端口占用就会出现
这种方式有个前提就是有可能你的tomcat下server.xml中的端口改为了80
然后再启动tomcat
iis 默认用到的就是80
,所以把iis关掉就可以了
Spring 资源管理
- 博客分类:
- Spring
applicationContext.getResource(“classpath:文件名”):在src根目录下,在类路径下
applicationContext.getResource(“classpath:/chap01/文件名”): 以src根目录下的基准往下走。
applicationContext.getResource(“file:c:/a.properties”):在系统文件目录下。
Spring 改变配置文件名称
- 博客分类:
- Spring
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/xyz.xml</param-value>
</context-param> ...
Spring JNDI 配置
- 博客分类:
- JNDI
<bean id=”dataSource”>
<property name=”jndiName”> <value>java:comp/env/jdbc/appfuse</value>
</property>
</bean>
package com.timer;
import java.util.Date;
import java.util.TimerTask;
public class MainTimer extends TimerTask {
@Override
public void run() {
System.out.println("定时任务已经执行");
}
public void execute(){
System.out.println(new Date().getSeconds());
}
}
配置文件( ...
<?xml version=”1.0″ encoding=”UTF-8″?>
<beans xmlns=” http://www.springframework.org/schema/beans ”
xmlns:xsi=” http://www.w3.org/2001/XMLSchema-instance ”
xmlns:aop=” http://www.springframework.org/schema/aop ”
xmlns:tx=” http://www.springframework.org/schema/tx ”
xsi:schemaLoc ...
<action name="*" class="com.opensymphony.xwork2.ActionSupport">
<result type="freemarker">{1}.ftl</result>
</action>
/**写入**/
import java.io.FileOutputStream;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
public class ExcelWriter {
public static String ...
JNDI 配置方法
<第一步>---context.xml 文件的配置
首先打开tomcat5.5 文件夹 C:\Program Files\Tomcat 5.5\conf 这是我的 tomcat 本机路径 在 conf 里有一个 context.xml 打开它,接着在<Context>....</Context>节点中添加 JNDI 配置文件<Resource..../>