https://docs.oracle.com/middleware/1221/wls/WLACH/taskhelp/domainconfig/EnableTheDomainwideAdministrationPort.html#WLACH01108 Before you begin The administration port accepts only secure, SSL traffic, and all connections via the p ...
阅读全文Credential Store Framework (CSF) is used in OWSM to manage the secure credentials. 下面是创建CSF Key的步骤: 1.首先需要这些信息 Weblogic Domain Name Identity Domain Name User Name Password 在Fusion Applications control (EM) 中选择Weblogic Domain Nam ...
阅读全文...
阅读全文node.js官网下载node.js安装文件. (https://nodejs.org/en/download/) https://nodejs.org/dist/v4.4.3/node-v4.4.3-x64.msi 安装node.js后,通过npm方法安装less $ npm install -g less 如果出错,可能就是有代理的问题 设置node.js代理方法: npm configure set proxy=htt ...
阅读全文错误:“Call to a member function isXXXMethod() on a non-object”, 提示该方法调用时,没有正确使用object实例,即not a object。 出错场景是在session中放入的object, 读取时不能还原成object。 原因是没有serialize(object)后再放入 Session中去。读取时还需要unserialize(str)还原回object. 参考: ...
阅读全文备份与恢复 1. 数据库备份 2. 示例用备份与恢复策略 3. 自动恢复 4. 表维护和崩溃恢复 5. myisamchk:MyISAM表维护实用工具 6. 建立表维护计划 7. 获取关于表的信息 本节讨论如何进行数据库备份(完全备份和增量备份),以及如何执行表的维护。本节描述的SQL语句语法参见第5章:数据库管理。此处提供的大多数信息主要适合MyISAM表。InnoDB备份程序参见15.2.8节,“InnoDB数据库的备份和恢复” ...
阅读全文初次使用AndroidStudio时,准备 Run app时出现这个错误,根据提示使用SDK manager下载 Intel HAXM仍然有这个问题。 Cannot lanuch AVD in emulator. Outout: emulator: ERROR: x86 emulation currently requires hardware acceleration! Please ensure Intel HAXM is properly installed and usab ...
阅读全文百度和google的高级搜索指令: 双引号: 搜索和查询词完全匹配的页面。谷歌和百度都支持。 减号: 是排除减号后面的收索结果。百度和谷歌都支持。 星号: 通配符,可以代表任何文字。百度不支持。 inurl: 是用在查询词语出现在url中的页面。谷歌和百度都支持。 inanchor: 返回导入链接锚文字中包含查询词语。百度不支持。 intitle: 是返回title中包含查询词的页面。百度和谷歌都支持。 ...
阅读全文<2016-06-30 01:53:50,083> <ConfigurationLoader:DEBUG> Loading configuration file :/com/agile/webfs/configuration/WebSecurity.properties <2016-06-30 01:53:50,100> <ConfigurationLoader:DEBUG> Loading configuration file :/com/ ...
阅读全文这里是ant tasks传送门。 Archive Tasks Audit/Coverage Tasks Compile Tasks Deployment Tasks Documentation Tasks EJB Tasks Execution Tasks File Tasks Java2 Extensions Tasks Logging Tasks Mail Tasks Miscellaneous Tasks Pre-process Tasks Property ...
阅读全文== 用来测试reference是否相等(whether they are the same object). 是否同一个对象? .equals() 用来测试 value 值是否相等 (whether they are logically "equal"). 是否值相同? 记住下面的几个情况: // These two have the same value(相同值) new String("test").equals(" ...
阅读全文QQ互联通过OAuth协议来实现,本文基于OAuth2.0整理。 QQ互联提供了OAuth协议的介绍:http://wiki.connect.qq.com/oauth2-0%E7%AE%80%E4%BB%8B OAuth2.0认证的过程大致如下: 用户在访问网站上点击QQ登录字样后,发起一个网站请求,网站跳转到QQ官方提供的一个oauth2.0认证的网址,格式如下: https://graph.qq.com/oauth2.0/authorize?response ...
阅读全文linux下的my.cnf搜索顺序: linux下,/etc/my.cnf->/etc/mysql/my.cnf->SYSCONFDIR/my.cnf->$MYSQL_HOME/my.cnf-> --defaults-extra-file->~/my.cnf 这几个位置还没有的话,就用的是默认值。 也就是说未必有!没有也能工作!!! 以上的顺序可以通过mysql --help来查看 ...
阅读全文页面出现这个错误:“No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost' is therefore not allowed access.” 这个原先是源于浏览器的跨域请求安全限制,解决办法可以通过设置请求Data类型jsonp或script来解决。 如: ...
阅读全文如何建立一个PDO连接?使用PDO访问 MySQL数据时real prepared statements默认不使用,而是使用的一个模拟模式。可以通过参数来设置: $dbConnection = new PDO('mysql:dbname=dbtest;host=127.0.0.1;charset=utf8', 'user', 'pass'); $dbConnection->setAttribute(PDO::ATTR_EMUL ...
阅读全文收集一下MySQL的错误代码以及名称: MySQL Error Number MySQL Error Name Legacy (X/Open) SQLState SQL Standard SQLState 1022 ER_DUP_KEY 230 ...
阅读全文问题背景: 1.IE6/7/8支持通过window.event获取对象,通过attachEvent方式添加事件时也支持事件对象作为句柄第一个参数传入 2.Firefox只支持事件对象作为句柄第一个参数传入 3.IE9/Opera/Safari/Chrome两种方式都支持 所以在Firefox中直接引用event会有undefined问题。 为了解决浏览器兼容问题,可以使用下面的方法获取。 var evt = windo ...
阅读全文PHP提供了三种不同的API来支持连接MYSQL。它们是mysql, mysqli, pdo扩展。 mysql_*函数是mysql扩展: 1. 已经不再活跃开发。 2.官方自PHP5.5起就申明作废,不建议使用。 3.自PHP7.0就已经彻底移除。 4.它缺少面向对象编程接口。 5. 它不支持这些功能特性 a) 非阻塞查询,异步查询 b) prepared statements 或者 parameterized queries。这是非常致命的一个缺 ...
阅读全文Installing the Certificates to the Keystore If you receive a message that says "Certificate already exists in system-wide CA keystore under alias <...> Do you still want to add it to your own keystore? [no]:", select Yes. If succes ...
阅读全文什么是XML Bomb? 字面上是XML炸弹,此炸弹有Enitity Expansion制作而成,而其威力由其聚变当量级决定。下面就是一个9级炸弹。 <?xml version="1.0"?> <!DOCTYPE bombz [ <!ENTITY bomb "bomb"> <!ENTITY bomb2 "&bomb;&bomb;&bomb;&am ...
阅读全文