`
cry615
  • 浏览: 150760 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表

tomcat JNDI配置

1.jndi 概念 http://baike.baidu.com/view/209575.htm tomcat官方文档,tomcat启动后访问http://localhost:8080/docs/jndi-resources-howto.html 个人理解,基于目录服务技术的一中实现,可以对dns,ladp等服务提供支持。   2.结合tomcat配置,3种配置方式 1)全局配置,tomcat安装目录conf文件下的context.xml增加context节点下增加 <Resource name="jdbc/testDB" auth="C ...

tomcat启动报错

1.javax.naming.NameNotFoundException: Name UserDatabase is not bound in this Context 2.LifecycleException: No UserDatabase component found under key UserDatabase 3.Parse Fatal Error at line 1 column 7: The processing instruction target matching "[xX][mM][lL]" is not allowed.   以上错误,to ...
tomcat 启动有doc文档 http://localhost:8080/docs/manager-howto.html#List_Available_Security_Roles 下有 url:http://localhost:8080/manager/resources 后面可以加?type=xxx。 tomcat的文档讲的挺详细的,赞一个!
http://michales003.iteye.com/blog/163646; http://zhidao.baidu.com/question/240098443.html; http://zhidao.baidu.com/question/181994158.html   可以在apache-tomcat-6.0.29\webapps\manager\WEB-INF 下的web.xml 看到 <!-- Security roles referenced by this web application -->   <security-role>   ...
http://www.blogjava.net/javagrass/archive/2011/05/13/350137.html

Java反编译工具Jad

    博客分类:
  • java
jad详细使用 http://www.cnblogs.com/dkblog/archive/2008/04/07/1980817.html http://hi.baidu.com/boz_lee/item/5842d210693089466926bb1a jd-gui工具可以编译jar包; 附件中有两个工具的下载!

FindBugs

    博客分类:
  • java
findbug百科 http://www.baidu.com/link?url=oHYKGJqjJ4zBBpC8yDF8xDhiqDSn1JZjFWsHhEoSNd85PkV8Xil7rc5oOXCijGKNNq 安装 http://tntxia.iteye.com/blog/604714 集成Eclipse使用 http://www.cnblogs.com/hyddd/archive/2009/02/13/1390362.html
http://blog.163.com/let_dreams_fly/blog/static/16803136520117855351735/
  http://86asm.iteye.com/blog/976019
http://blog.csdn.net/xiaoxiaoxuewen/article/details/7697647 http://01404421.iteye.com/blog/699948
最近在配cas单点登录报出了trustAnchors parameter must be non-empty(trustAnchors参数必须非空)错误,google查了,资料甚少!http://blog.chinaunix.net/uid-26284318-id-3069142.html 其中此链接是一种解决的方法,但依然没解决了我的问题,最后搞定是tomcat运行的jdk跟你配的Server端key认证不是一个同一个jdk下的jre <Connector    port="8443" protocol="HTTP/1.1" SSLEnable ...
http://blog.csdn.net/lubiaopan/article/details/4720862 追求高质量的代码的同时,我们多多少少就得对java代码探究了,优质的,高性能的代码,无疑也是一个合格程序员的必备所学! 链接里已对String的判断做了详尽解释,如果单纯的比较String的为空或null的话,无疑是if(x != null && s.length() > 0),JDK6SE的string类的isEmpty()也是基于length()判断的,所以两者几乎没什么区别; 还有一种if(x != null && !"&quo ...
oracle 10g 后出现了关于递归函数start with……connect by查询的一个伪列函数CONNECT_BY_ISLEAF来判断是否是子叶; 1表示是子叶,0为非子叶,一个分支。
1.概念   rowid和rownum都是伪列(实际上这一列本身在数据字典中并不存在,在查询结果输出时它被构造出来的);    1)rownum是基于查询结果的顺序标记,而且是逐次递加的,换句话说就是只要有rownum=1的记录,才可能有rownum=2的记录    2)rowid是用于定位数据库中一条记录的一个相对唯一地址值。通常情况下,该值在该行数据插入到数据库表时即被确定且唯一。而对于聚簇表,由于聚簇特性,不同表上的记录由于存储在相同的簇上,因此会拥有相同的ROWID。数据库的大多数操作都是通过ROWID来完成的,而且使用ROWID来进行单记录定位速度是最快的。      有 ...
http://javaliujie.iteye.com/blog/278936
Global site tag (gtag.js) - Google Analytics