- 浏览: 123468 次
- 性别:
最新评论
文章列表
mvc:interceptors
这个标签用于注册一个自定义拦截器或者是WebRequestInterceptors.
可以通过定义URL来进行路径请求拦截,可以做到较为细粒度的拦截控制。
例如在配置文件加入
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:mvc="http://www.springframework. ...
/**
* Shiro-1.2.2内置的FilterChain
* @see =============================================================================================================================
* @see 1)Shiro验证URL时,URL匹配成功便不再继续匹配查找(所以要注意配置文件中的URL顺序,尤其在使用通配符时)
* @see 故filterChainDefinitions的配置顺序为自上而下,以最上面的为准
* ...
1、下载地址:http://sourceforge.net/projects/freemarker-ide/files/
2、解压并拷贝到目录D:\Program Files\MyEclipse\MyEclipse 10\dropins
3、重启myEclipse
4、window --> Preferences 左侧出现 FreeMarker Editor
5、General --> Editors --> File Associations下
如果没有 *.ftl 类型,则在右侧Add一个,然后设置*.ftl 打开方式为:Freemarker ...
方法一:
String str = "123123213\n123123\n123\n";
System.out.println(str.split("\n",-1).length-1);
注:
String split
此方法返回的数组包含此字符串的子字符串,每个子字符串都由另一个匹配给定表达式的子字符串终止,或者由此字符串末尾终止。数组中的子字符串按它们在此字符串中出现的顺序排列。如果表达式不匹配输入的任何部分,那么所得数组只具有一个元素,即此字符串。
limit 参数控制模式应用的次数,因此影响所得数组的长度。如果该限制 ...
版本:Python 3.3.4
错误:name 'raw_input' is not defined
原因:版本3.X 中去掉了raw_input 函数,改用input。
右击->buildPath->添加库-->MyEclipse libraries--->选择里面的j2ee xx libraries
一直用svn协议访问,有个缺点 密码是明文。
Subversion 版本 1.6.6 (可根据安装目录下REMDME.txt 找到对应的Apache版本 Apache 2.2.11)
Apache 版本 2.2.25
Subversion本身是安装好的
1、创建测试库
svnadmin create "f:/svn/testApache"
2、创建用户(Apache安装成功)
"D:\Program Files\Apache Group\Apache2\bin\htpasswd" -cm "F:/svn/te ...
查找到一个的类的方法被哪些类调用了
全局 工作区中的引用 Ctrl+Shift+G
Ctrl+Alt+H
以前也遇到过类似问题,觉得没多大点事,无非地址了,主机名错误,注册表路径类问题,仔细检查一边都没有,不扯淡上代码
oracle默认端口1521、这个端口从没遇到过被占用的情况、无图无解阿
PID为3536的进程
已经被Kill掉了、
也可以从任务管理器中查看、右键结束进程
搞定了。。。
附加:
主机名错误
解决方法:HOST= 计算机名称
注册表路径为NULL
解决方法:
进入注册表中修改ImagePath在运行处执行 REGEDIT 进入注册表到HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet ...
sqlplus /as sysdba;
shutdown immediate;
startup mount
//修改表空间路径
alter tablespace test_data rename datafile 'D:/oracle/test_data.dbf' to 'E:/oracle/test_data.dbf'; alter database open;
//删除临时表空间
drop tablespace test_temp;
//创建临时表空间
create temporary tablespace test_temp tempfile 'E:\ora ...
keycode 8 = BackSpace BackSpace
keycode 9 = Tab Tab
keycode 12 = Clear
keycode 13 = Enter
keycode 16 = Shift_L
keycode 17 = Control_L
keycode 18 = Alt_L
keycode 19 = Pause
keycode 20 = Caps_Lock
keycode 27 = Escape Escape
keycode 32 = space space
keycode 33 = Prior
k ...
部署项目的时候出现
java.lang.ClassNotFoundException:HttpSessionBindingEvent
项目没有问题、
重启Tomcat 重新部署
重启MyEclipse
Project > Clean
OK
在detail中加入一个Break(分页隔符) 设置
print when expression new Boolean($V{REPORT_COUNT}%10==0)
这里的10 就是每页10条
$V{REPORT_COUNT}为总行数
原文:http://nvry.iteye.com/blog/848506
分享有价值的
#
# Simplified Chinese translation for subversion package
# This file is distributed under the same license as the subversion package.
#
# Update to new pot:
# msgmerge --update zh_CN.po subversion.pot
#
# Check translation:
# ...
服务端版本控制软件subversion,客户端是eclipse的插件subclipse
A conflict in the working copy obstructs the current operation
org.tigris.subversion.javahl.ClientException: A conflict in the working copy obstructs the current operation
svn: Commit failed (details follow):
svn: Aborting commit: 'D:eclipse-java-ganymede- ...