`
Nightlee
  • 浏览: 67300 次
社区版块
存档分类
最新评论
文章列表
想用Instrumentation监控cache的实际消耗内存,结果手贱,图方便把Instrumentation类和cache的spring配置文件打到了一个包里,通过在jboss启动脚本里增加 -javaagent:xxx.jar生效 Instrumentation本身没问题,结果是spring里的一些aop类找不到,报“org/aspectj/lang/ProceedingJoinPoint.class”这个类找不到,肯定是spring动态加载找不到这个文件,但奇怪的是lib里明明有这个类。。。 郁闷了半天,重要想到可能和javaagent配置有关,于是豁然开朗了 由于加载xxx.ja ...

XPATH使用namespace

    博客分类:
  • JAVA
XPath xpath = XPathFactory.newInstance().newXPath(); NamespaceContext nsContext = new XHTMLNamespaceContext(); xpath.setNamespaceContext(nsContext); XPathExpression expr = xpath.compile("//xhtml:TABLE"); public class XHTMLNamespaceContext implements NamespaceContext { @Overrid ...
mvn dependency:copy-dependencies -DoutputDirectory=d:/dep 手工改build path

maven 构建wtp工程

    博客分类:
  • JAVA
创建新project mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-webapp -DarchetypeArtifactId=maven-archetype-webapp 导入eclipse mvn -Dwtpversion=2.0 eclipse:eclipse 修改 $projectHome/.settings/org.eclipse.wst.common.project.facet.core.xml <faceted-project> <fixed facet=" ...
getElementsByClassName在IE下只能用于input textarea等控件 不能用于div span 而FF可以 使用prototype.js的$$方法可以做到兼容 写法是 var objs=$$('span[class="sp_indirectDep"]'); <span class="sp_indirectDep">...</span>
感谢ssgemail在http://www.iteye.com/topic/1112018中提供的方法 涉及内容 apk反编译 代码修改 打包 重启签名 需要的工具 jdk:必须的 baksmali:classes.dex反编译为smali格式(文本文件,可修改) smali:smali格式编译打包为classes.dex 但由于smali格式类似汇编,比较难阅读,所以用dex2jar进行辅助 dex2jar:classes.dex转为jar包 jdgui:jar反编译并阅读 以上工具可以在 http://liye111111.ys168.com/ 下载 好了,顺序就是把ap ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/ ...
<build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.5</version> <executions> <execution> ...
捕捉打开硬键盘事件 AndroidManifest.xml <activity android:name="MainForm" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation"> 在当前Activity中重载方法onConfigurationChanged
整理一下与JVM和GC相关的问题 java.lang.OutOfMemoryError: Java heap space            在JVM中如果98%的时间是用于GC且可用的Heap size 不足2%的时候将抛出此异常信息。 Heap size 的大小是Young Generation 和Tenured Generaion Heap Size 最大不要超过可用物理内存的80%,一般的要将-Xms和-Xmx选项设置为相同,而-Xmn为1/4的-Xmx值。 因为在JVM5运行时已经对Heap-size进行了优化,所以在能确定java应用运行时不会超过默认的Heap size的情况 ...
使用Spring配置rmi出现的问题。 在本地测试通过后,发布到linux后发现有这样的问题 错误内容是: org.springframework.remoting.RemoteConnectFailureException: Cannot connect to remote service [rmi://192.168.0.106:1199/HelloService]; nested exception is java.rmi.ConnectException: Connection refused to host: 127.0.0.1; nested exception is: ...
修改tomcat5028\conf\Catalina\localhost\manager.xml <Context path="/manager" docBase="D:/tomcat5028/server/webapps/manager" debug="0" privileged="true"> <!-- Link to the user database we will get roles from --> <ResourceLink name="users" ...
方向说明: ↖↑↗                       7 8 9 ←   → 代表键盘上的 4   6 ↙↓↘                       1 2 3 人物名称以英文名为标准. 部分招式中文名称参考http://www.xbox-skyer.com/showthread.php?t=222497 部分 ...
症状: 代码: sudo apt-get update W: GPG error: http://apt.tt-solutions.com dapper Release: 由于没有公钥,下列签名无法进行验证: NO_PUBKEY 06EA41DE4F6C1E86 解决方法: 代码: gpg --keyserver subkeys.pgp.net --recv 4F6C1E86 gpg --export --armor 4F6C1E86 | sudo apt-key add - 说明: 若缺少其他公钥,则将命令中两处4F6C1E86改为NO_PUBKEY 06EA41DE4F6C1E86中最后 ...

ubuntu fstab

    博客分类:
  • OS
proc /proc proc defaults 0 0 # Entry for /dev/sda3 : UUID=337fc3a3-2081-4572-bead-3a98dcac749e / ext3 relatime,errors=remount-ro 0 1 # Entry for /dev/sda6 : UUID=ccbfc73e-66e0-4965-955e-6510337e058c /home ext3 relatime 0 2 # Entry for /dev/sda7 : UUID=2ac6b8ee-3a7b-4a1b-a105-8669bfcd9bcf none swap sw ...
Global site tag (gtag.js) - Google Analytics