- 浏览: 206854 次
- 性别:
- 来自: 成都
最新评论
-
werty45775:
<property name="allowUr ...
Spring mvc 拦截器 配置心得 -
fly_to_the_winds:
请问能拦截.jsp结尾的访问吗?
Spring mvc 拦截器 配置心得 -
yong230:
楼主能把这个SessionTimeoutException类贴 ...
Spring mvc 拦截器 配置心得 -
daoyongyu:
楼主写的挺好,谢谢!
我补充一下映射路径的说明:
<mv ...
Spring mvc 拦截器 配置心得 -
liruihui:
不好使,骗人的
The method getJspApplicationContext(ServletContext) is undefined for the typ
文章列表
Talend ESB bundles Service Factory and Integration Factory,
Service Locator, Service Activity Monitoring and demo applications
to a stable, production ready distribution based on the industry leading
open source frameworks Apache CXF and Apache Camel.
It includes Web Service support based on JAX- ...
Spring mvc 拦截器 配置心得
session超过时间自动跳转到登录页面。要求请求的每个url都要进行拦截,当然,js,css这些东西除外。
spring-mvc.xml
<!-- 拦截器配置 -->
<mvc:interceptors>
<!-- session超时 -->
<mvc:interceptor>
<mvc:mapping path="/*/*"/>
<bean class="com.ziyou.platform.intercept ...
最近好像很流行Restful,终于弄懂一点眉目。一个小小的ajax请求没反应让我找了半天错误,原来是请求路径写错了。不给提示,坑死哥了。记下来
点击页面按钮,调用以下函数
function ideaStatus(el){
var self=$(el);
var status=self.attr('data-status');
var ideaId=self.attr('data-id');
var txt=self.text();
var txtStatus = self.text();
$( ...
mysql卸载重装老是在最后阶段的第3步失败,start service出现红叉叉。
那是因为你没有卸载干净。除了所在目录的文件要删完之外,
C:\Documents and Settings\All Users\Application Data 下面的mysql又要删除。
如果还不行挨着注册表找,只要是mysql相关都删了
将图片上传到ftp服务器,减少tomcat的压力,如何在代码中显示硬是想了一两天。
<img src:"ftp://192.168.68.111/../xx.jpg" />
? 这样子肯定是不行的。
引用解决办法:
装一个apache服务器,将它的默认目录指向图片所在路径即可,修改 conf/httpd.conf 文件中的 DocumentRoot 和 Directory 的值。指向你要的目录。linux下也是一样,不过可能多个文件夹权限的配置。chmod 777就搞定。
然后你就可以通过
<img src:"http://192.1 ...
小小问题困扰了几天。一路试了N种办法,最后在spring整合hibernate 的applicationContext文件中加了一句 问号后面的(包括问号)
<!-- 数据库地址 -->
<property name="driverUrl"
value="jdbc:mysql://127.0.0.1:3306/appcenter
?useUnicode=true&characterEncoding=UTF-8" />
当然前期的工作也可能是有用的,比如 mysql 的my.ini 设置c ...
web.xml
<servlet>
<servlet-name>AxisServlet</servlet-name>
<servlet-class>org.apache.axis.transport.http.AxisServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>AxisServlet</servlet-name>
<url-pattern>/serv ...
翻页后传参乱码问题
JSP页面:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
很多时候我们已经设置了项目的编码为UTF-8,可以还是会出现乱码问题,今天我做一个翻页传参出现了乱码问题,请教了克隆,结果出来了:
apache-tomcat-6.0.20\conf\server.xml
<Connector port="8080" protocol="HTTP/1.1"
connectionTime ...
淘宝的架构 http://www.open-open.com/lib/view/open1333676579217.html#
淘宝用的是JBoss,框架是iBATIS,缓存服务器是自己开发的,基本遵循SNA架构,水平扩展,数据库是Oracle,阿里集团的DBA几乎是国内最强悍的。目前淘宝的系统架构正在重 ...
public static <K, E> Map<K, E> convert2(Collection<E> col, String propertyName)
{
Map<K, E> map = new HashMap<K, E>();
if(null == col){
return map;
}
for (E obj : col) {
BeanMap bm = new BeanMap(obj);
K value = (K)bm.get(propertyNa ...
Struts2引发的启动异常
2010-9-26 22:27:16 com.opensymphony.xwork2.util.logging.commons.CommonsLogger error
严重: Dispatcher initialization failed
java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
at com.opensymphony.xwork2.inject.ContainerImpl$MethodInjector.inject(ContainerImpl.java ...
工程启动正常,但是只要一访问页面就会报:
The method getJspApplicationContext(ServletContext) is undefined for the typ ......
打断点,每次走到 CharacterEncodingFilter.java doFilter()就抛异常了。
网上说是工程里面多了几个包,认真找下去,还真的是多了 javax.servlet.jar 和 javax.servlet.jsp.jar 两个包。 去掉就OK了。
select columnId,
type,
itemType,
addDate,
startDate,
endDate,
viewCnt,
status,
columnName,
topicIntro,
topicLogo,
topicBanner,
additionalUrl,
templetId
from (select rownum rn,
...
今天项目中遇到一条sql语句,其中t_userdownreslog表数据4千万条,t_userinfo 数据2千万条.
修改前
select t.user_account username,
t.mobile usermobile,
t.user_id userid,
u.down_type downtype,
u.resourceid appid,
u.resourcename appname,
...
JAVA 获取本机IP
- 博客分类:
- 面试题
InetAddress.getLocalHost().getHostAddress()