- 浏览: 24314 次
- 性别:
- 来自: 上海
最新评论
文章列表
错误原因: 先在命令行中以Administrator启动mysql ,生成ib_logfile0和ib_logfile1文件,然后关闭mysql。 再在windows Service 中启动mysql, 这时候默认是用System 账户去启动,System账户读取不了ib_logfile0和ib_logfile1文件导致mysql启动失败
参考:
java service wrapper 工具: http://wrapper.tanukisoftware.com/doc/english/download.jsp#historic
JBoss eap 6.x 如何安装成windows Service https://gist.github.com/mranest/6612147
windows上64位的wrapper工具没有免费版的, 可以使用32位的,java也使用32位的,
使用32位的 需要去掉 wrapper.java.additional.2=-XX:+UseCompressedOops 这个参数 ...
在IE下面 iFrame 里面默认禁止cookie , 需要加上P3P Header, 在代码中加或者到Apache上面加。
在Apache 上面加P3P header , 需要打开Header module
#add p3p header
Header add P3P "CP=NOI DSP LAW NID"
参考:http://stackoverflow.com/questions/8706006/local-storage-in-ie9-fails-when-the-website-is-accessed-directly-from-the-file-s
问题: 在做一个Oauth2 js 的 例子的时候, Oauth2 js 通过HTML5 LocalStorage 来存储accessToken。
当在IE下,用文件路径打开html测试时,是不能使用LocalStorage。
可以使用jStorage.js 来解决 , 详情 : https://github.com/a ...
参考: http://magnus-k-karlsson.blogspot.com/2012/08/how-to-install-mysql-datasource-on.html
http://blog.csdn.net/yaoyu_leo/article/details/21975529
1. 把mysql添加为JBOSS module (复制msyql驱动的jar到JBOSS里面)
2. 在JBOSS 的 standalone.xml中声明mysql datasource
python2.x 启动web服务 在cmd窗口中输入 : python -m SimpleHTTPServer 9000
参考 :
安装SMTP
http://blog.powerbiz.net.au/exchange/how-to-set-up-an-internal-smtp-service-for-windows-server-2012-essentials/
测试安装是否成功
http://www.simplescripts.de/smtp-check-port-25-telnet-command.htm
参考:https://www.liferay.com/community/forums/-/message_boards/message/5130175
Liferay 中的coustom fileds默认是只能有Owner才能全部的权限操作, 只需要在coustom Filed上面把权限放开,就可以让任何人读取coustom fileds 的值
参考: https://www.liferay.com/community/wiki/-/wiki/Main/Adding+Rating+to+a+portlet
https://www.liferay.com/community/forums/-/message_boards/view_message/4817057
在jsp页面加上评分标签
className 是评分绑定的类名, classPk 是评分绑定的具体类的主键
<liferay-ui:ratings
className="<%= Lesson.class.getName() %> ...
参考: http://itsliferay.blogspot.com/2011/07/orderable-search-container.html
http://itsliferay.blogspot.in/2014/04/sort-search-container-result.html
1 在jsp页面加上 orderable 和 orderableProperty
<liferay-ui:search-container-column-text
name="updateDate"
value="${updateDat ...
参考:http://liferaytrends.blogspot.com/2013/01/tabs-with-search-container-in-liferay.html
想要的效果: 类似liferay 控制面板 搜索User 的页面
可以搜索, 分页, 显示提示信息
1.
liferay-util:buffer 标签可以把这个标签里面的标签内容当做一个变量赋值给其他标签
<%@ taglib uri="http://liferay.com/tld/util" prefix="liferay-util" %> ...
Ubuntu 杀掉关不掉的进程
- 博客分类:
- ubuntu linux
1. 先用 top 命令查看占cpu 和内存很高的进程, 查看进程的pid
2. 用kill -9 pid 杀掉该进程
参考: http://vraidsys.com/2012/08/spring-mvc-3-enable-cross-origin-resource-sharing/
http://stackoverflow.com/questions/23103832/spring-mvc-does-not-handle-requestmethod-options
http://stackoverflow.com/questions/8863571/cors-request-why-are-the-cookies-not-sent
1. 修改web.xml
添加dispatchOptio ...
1. Lucene 搜索 时 如何对 <p>it is te<a>st</a></p> 这样的情况进行定位, 找到test在整个字符串里面的开始开始和结束位置, 现在可以得到 test 在 it is test这个字符串里面的开始位置和结束位置, 还不知道如何得到在<p>it is te<a>st</a></p> 的开始位置和结束位置。
Mysql 命令行启动 查看启动信息
- 博客分类:
- Mysql
在mysql安装目录下面的bin目录下面
mysqld --console --verbose