- 浏览: 133942 次
- 性别:
- 来自: 湖边
最新评论
-
zhangyaou:
一点摩擦不让别人活,超级的狭隘心理,就那还算一个大企业 真要 ...
腾讯真操蛋 不让用QQ了
文章列表
系统:Centos5.x
内核:2.6.18.x
命令行异常信息:
vif0.0: received packet with own address as source address
也可dmesg查看系统信息
表现为机器不能联网
#查看网络配置
$ /sbin/ifconfig
eth0 Link encap:Ethernet HWaddr FE:FF:FF:FF:FF:FF
inet addr:172.16.1.11 Bcast:172.16.1.255 Mask:255.255.255.0
inet6 addr: fe80 ...
Freemarker中没有Java语言中的null,也不是关键字,也不能监测变量是否为null。
测试一个变量是否为null: <#if foo.bar??>,不为null:<#if !(foo.bar??)>
对于空值的处理:${x!'missing'}
如果x为null则显示 missing
Git配置
git config --global user.email "fankai@gmail.com"
git config --global color.ui true
git config --global alias.co checkout
git config --global alias.ci commit
git config --global alias.st status
git config --global alias.br branch
git config --global core.editor "mate -w&q ...
SSH远程登录,使用一段时间后卡住
- 博客分类:
- Linux
这两天使用SSH登录公司服务器(CentOS 5.X),使用一会儿后,命令行就没反应了,没办法,只能又重新登录;
不是过期,因为我一直在使用,后来无意间按了Crtl + C , 然后命令行就复活了,,,,汗,不知道是什么进程卡了,现在就先这么解决用吧。
用Java的JPDA远程调试程序
在$CATALINA_HOME中catalina.sh的配置文件中,开启JPDA_ADDRESS 对应的端口(要进行远程调试的端口),
使用命令./catalina.sh jpda start 启动tomcat服务
日志中输出 Listening for transport dt_socket at address: 8000 说明调试启动成功
在eclipse中 Remote Java Application 中选择相应的项目,port=8000。
sudo apt-get install ibus-rime 安装
system settings --> keyboard layout 添加Chinese键盘
点击桌面右上角键盘图标preferences选项 --> input method选项卡 --> 自定义输入法下拉列表中选择Rime,然后点击右侧的add按钮。
上面步骤完成应该就好了,如果不行注销或重启系统试试。
类级别的注解
@RunWith(SpringJUnit4ClassRunner.class)
@Transactional
@TransactionConfiguration(transactionManager = "txManager", defaultRollback = false)
@ContextConfiguration(locations = { "classpath:applicationContext.xml" })
@RunWith(SpringJUnit4ClassRunner.class) 使用spring配置环境
...
Mac开机后没有声音
- 博客分类:
- Mac
我的Mac用bootcamp安装了双系统,在win7系统静音了,然后开机切换到Mac系统发现声音没有了;
我在win7里静音的时候插入耳机是可以听见声音的,然后在Mac里把耳机插上,发现声音就恢复正常了,不知道Mac里这个设定是为什么 = =
另外一种情况参照此帖
http://blog.csdn.net/afatgoat/article/details/4049142
SVN update 更新状态
- 博客分类:
- svn
A:add 新增
C:conflict 冲突
D:delete 删除
M:modify 本地已经修改
G:modify and merGed 本地文件修改并且和服务器的进行合并
U:update 从服务器更新
R:replace 从服务器替换
I:ignored 忽略
validateJarFile($filePath/WEB-INF/lib/servlet-api-2.5.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class
tomcat启动时报此错误,是因为tomcat的lib目录和项目的lib目录都有servlet-api.jar这个包,把项目下的这个包删除即可。
java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener
环境:eclipse中用tomcat启动项目,项目基于Maven管理
这是在stack overflow 看到的解决办法
I had a similar problem when running a spring web application in an Eclipse managed tomcat. I solved this problem by adding maven dependencies in the ...
method <init>(Ljava/lang/String;Ljava/lang/Throwable;)V not found
这个错误是因为Quartz的cronExpression表达可能有误,如日期和星期可能出现互斥的情况,其中一个可用?代替
字段 允许值 允许的特殊字符
秒 0-59 , - * /
分 0-59 , - * /
小时 0-23 , - * /
日期 1-31 , - * ? / L W C
月份 1-12 或者 JAN-DEC , - * /
星期 1-7 或者 SUN-SAT , - * ? / L C #
年(可选) 留空, 1970-2099 , - * /
The '*' character is used to specify all values. For example, ...
tomcat的server.xml配置文件中的<Host>标签中加<Context>,docBase=项目路径加名称(不带.war后缀名)
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
...
eclipse导入Maven项目报错:
An internal error occurred during: "Importing Maven projects". Unsupported IClasspathEntry kind=4
1. Right-click on your project, select Maven -> Remove Maven Nature.
2.Open you terminal, go to your project folder and do “mvn eclipse:clean”
3.Right click on ...