- 浏览: 12108 次
- 性别:
- 来自: 广州
最新评论
-
xflcx1991:
原来如此。spring老是报找不到文件,非得手动拷贝才行,原 ...
解决Eclipse不拷贝source目录下的XML配置文件到bin目录问题
文章列表
创建节点
create-node-agent
[--terse={true|false}][ --echo={true|false} ]
[ --interactive={true|false} ] [ --host host]
[--port port] [--secure| -s ] [ --user admin_user]
[--passwordfile filename] [--help]
[ --agentdir nodeagent_path] [--agentport port_number]
[--agentproperties (name=value)[:na ...
JBOSS:
http://repository.jboss.org/nexus/content/groups/public-jboss/
Servlet 2.3
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
...
</web-app>Servlet 2.4
< ...
JDK6 White Paper记录
- 博客分类:
- 参考资料
Biased locking(偏向锁):-XX:-UseBiasedLocking(默认启动)
Lock coarsening(锁粗化):-XX:-EliminateLocks(默认启动)
安装环境CentOS 5.3
错误一
日志如下($ORACLE_HOME/oraInventory/logs/installActions2009-09-17_04-18-19PM.log)
INFO: gcc:
INFO: /usr/lib/libstdc++.so.5: No such file or directory
INFO:
INFO: /opt/oracle/10g/bin/genorasdksh: Failed to link liborasdkbase.so.10.2
INFO: make: *** [liborasdkbase] ...
- 2009-09-18 09:57
- 浏览 1737
- 评论(0)
.ppt - application/mspowerpoint.ai - application/postscript.aif - audio/x-aiff.aifc - audio/x-aiff.aiff - audio/x-aiff.asc - text/plain.au - audio/basic.avi - video/x-msvideo.bcpio - application/x-bcpio.bin - application/octet-stream.c - text/plain.cc - text/plain.ccad - application/clariscad.cdf - a ...
- 2009-05-13 11:00
- 浏览 1074
- 评论(0)
用Eclipse开发Java应用是经常需要使用XML配置文件,但到了Eclipse3.4后不知为何不会拷贝XML配置文件到bin目录。后来发觉是因为默认过滤了一些文件。把相关过滤删除即可。
1、右键工程项目
2、选择“Properties”
3、选择“Java Compiler” -> “Building”
4、点击右边“Output folder”
5、删除“Filtered resources”中的“*.xml”
6、保存设置并退出
- 2009-02-28 19:46
- 浏览 3867
- 评论(1)
“Smells in Test that indicate Design problems”
(http://blogs.agilefaqs.com/2009/02/01/smells-in-test-that-indicate-design-problems/)。
原文如下:
Following are some of the conclusions from the discussion:
Too many test cases per method: may indicate that the method is doing too much. We discussed the fa ...
- 2009-02-06 12:55
- 浏览 742
- 评论(0)
1、开发WSDL时,需要注意wsdl:portType与wsdl:binding中的operation关系;
如有一WSDL如下:
<wsdl:definitions ……>
……
<wsdl:portType name="TESTWebService">
<wsdl:operation name="queryTestInfo">
<wsdl:input message="tns:QueryTestInfo" name="queryTestInfo" / ...