- 浏览: 31759 次
- 性别:
- 来自: 北京
最新评论
文章列表
1 安装samba。
①安装命令:yum -y install samba
②修改配置文件 /etc/samba/smb.conf
添加共享目录
[tomcatShare]
path = /usr/local/tomcat/webapps
read only = no
public = yes
guest ok = yes
create mask = 0777
force create mask = 0777
directory mask = 0777
force directory mask = 0777
[global]设置
wo ...
ps aux | grep catalina
-Dcatalina.home= 后面的路径就是你tomcat的目录,其他参数可以暂时不管
1.首先在spring配置文件中配置线程池
<bean id="taskExecutor" class="org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor">
<property name="corePoolSize" value="5" />
<property name="maxPoolSize" value="10" ...
ftp安装
https://www.centos.bz/2011/03/centos-install-vsftpd-ftp-server/
tomcate设置
http://stackoverflow.com/questions/14085371/tomcat-intellij-idea-remote-deploy
http://www.cnblogs.com/karasjiang/p/3678896.html
http://www.educity.cn/wenda/121280.html
http://nesuk.iteye.com/blog/1695309 ...
http://jingyan.baidu.com/article/90895e0f97a37b64ec6b0bc6.html
http://jingyan.baidu.com/article/ce09321b5632612bff858fcd.html
http://blog.csdn.net/linwei_1029/article/details/8844939
http://blog.csdn.net/xuanjiewu/article/details/7587586
http://wenku.baidu.com/link?url=DC6FeSmAwf9dPwCHPT4OVY4rsv ...
过期时间
之前应该提到过 redis 的特性之一是可以设置键的超时时间。命令是expire。
redis > SET session:27e7a id1234
OK
redis > EXPIRE session:27e7a 1200
(integer) 1
<!--事务相关控制-->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"></property>
</bean>
<tx:advi ...
有回调的,最常用的,发送成功,取消发送,你要是回调不来的话,基本上就是包搞错了,包名必须是申请app时的包名+wxapi 下,回调的类名必须是WXEntryActivity 而且要这个ativity 要是android:exported="true",希望对你有用。。
<script>jq1.9min.js</script>
<script>
(function(a){
a.fn.touchwipe=function(c){
var b={
drag:false,
min_move_x:20,
min_move_y:20,
wipeLeft:function(){/*向左滑动*/},
wipeRight:function(){/*向右滑动*/},
...
1:分享js的开发。
2:每天消息群发。
3:给某人推送最佳答案。
4:手机端js翻页效果,http://levi.cg.am/archives/3546
5:微信js api http://www.gbtags.com/gb/share/4451.htm
6:手机触屏触摸特效javascript-TouchSwipe(依赖于jquery库)中文说明
http://www.cnblogs.com/aimyfly/p/3843977.html
最近老是要为现在这个项目初始化数据,搞的很头疼,而且数据库的Id自增越来越大,要让自增重新从1开始:那么就用下面的方法吧: 方法一: 如果曾经的数据都不需要的话,可以直接清空所有数据,并将自增字段恢复从1开始计数 truncate table 表名 方法二: dbcc checkident ('table_name', reseed, new_reseed_value) 当前值设置为 new_reseed_value。如果自创建表后没有将行插入该
mysql -u root -p DBNAME;
GRANT ALL PRIVILEGES ON *.* TO 'root'@'222.211.138.94' IDENTIFIED BY 'Seer1122' WITH GRANT OPTION;
flush privileges;
jQuery使用$.inArray(val,array)方法判断值是否存在于数组中解释: 确定第一个参数在数组中的位置, 从0开始计数(如果没有找到则返回 -1 ).记 得indexOf()方法了吗? indexOf()返回字符串的首次出现位置,而$.inArray()返回的是传入参数在数组中的位置,同样的,如果找到的,返回的是一个大于或等于0 的值,若未找到则返回-1.现在, 知道怎么用了吧. 有了它, 判断某个值是否存在于数组中,就变得轻而易举了.
var _exist=$.inArray('btbear',_bear);
var _inexistence=$.inArray('btb ...