atitit.404错误调查过程汇总



#----------jsp  head  errorPage=""

del zeu ok le.



#------resin server。

俩个应用配置到了相同的的目录..

paip.404err two app cfg  one same dir





/  cant access



/app1   only can access ..







envi ..resin4..





作者: 老哇的爪子Attilax 艾龙,  EMAIL:1466519819@qq.com

来源:http://blog.csdn.net/attilax



#------404 urlrewrite 伪静态调用失败

使用了urlrewrite伪静态可是,没有找到规则相应。。查看日志能够解决..







 

#-----------1.应用没有启动sucess...  查看log或者webserver管理控制台....



 C:\resin-4.0.36\resin.exe --server homiSearchServerServerID console

 C:\resin-4.0.36\resin.exe --server homiSearchServerServerID console

 

 查看log....

 logz上能看到个全部的mvc url路线..使用npp过滤寻找..一哈就砍出来兰..

 

 #-----要是使用了struts...struts中断了流程...查看struts配置..

 

#----2.spring mvc @Controller问题

//todo o40 must ctrl... if compent  cant be find..   ioc  contl==comp but mvc not equi..

@Controller

public class visitorBlockService {







#-----3.spring mvc  导入 ModelAndView 错误



import org.springframework.web.portlet.ModelAndView;







不应该引入这个ModelAndView 应该引入:



import org.springframework.web.servlet.ModelAndView;





#-----可能filter wirte err...

spr.jsp







yaosi dis chain.doFilter  ,and no forward...then  empty...output...



  if(requestURI.endsWith("spr.jsp")){

         //  resume to access    chain.doFilter(request, response);

            core.log("-- endsWith spr.jsp stop the chainfileter");

            RequestDispatcher requestDispatcher = request.getRequestDispatcher("spr.jsp");

            requestDispatcher.forward(request, response);//这两句怎么解释啊?

            //   ((HttpServletResponse)response).flushBuffer()

            return;

        }

        

#-------使用了域名配置方式,可是使用ip訪问

resin4.0.22会这个问题..

        



參考

.spring mvc 404错误的解决

spring mvc ModelAndView 404 变态 - VC MFC.htm

版权声明:本文博主原创文章。博客,未经同意不得转载。

atitit.404错误调查过程汇总的更多相关文章

  1. atitit.404错误的排查流程总结vOa6

    atitit.404错误的排查流程总结vOa6 1. 场景 1 1.1. 子应用猛个腊擦不能使用  404 兰.. 1 2. 服务器配置问题 2 2.1. 登录服务器管理子应用,查看应用是否启动okk ...

  2. atitit.404错误的排查流程总结

    atitit.404错误的排查流程总结 #----------jsp  head  errorPage="" del zeu ok le. #------resin 服务器配置问题 ...

  3. Atitit  404错误的排查流程总结 v3 qaf

    Atitit  404错误的排查流程总结 v3 qaf 1.1. 用了注解不生效 提示404 Not Found1 1.2. 路径不对了,开头多了个空格1 2. 500 Servlet Excepti ...

  4. Atitit.404错误解决标准流程and url汉字中文路径404错误resin4 resin chinese char path 404 err解决

    Atitit.404错误解决标准流程and 错误resin4 resin chinese char path 404 err解决 1. #原因解析 1 2. #解决方式 2 3. 输出图片流... 2 ...

  5. Atitit.500 503 404错误处理最佳实践oak

    Atitit.500 503 404错误处理最佳实践oak 1. 错误处理的流程(捕获>>日志>>db>>email alert) 1 2. 错误的捕获:strut ...

  6. Atitit.故障排除系列---php 计划网站数据库错误排除过程

    Atitit.故障排除系列---php 计划网站数据库错误排除过程 Php页面报告的错误不能定位到myusql的db配置上...字说是db conn err Mysql 接入错误...大概查看哈能不能 ...

  7. 64位 SQL Server2008链接访问Oracle 过程汇总解决方法记录

    64位 SQL Server2008链接访问Oracle 过程汇总解决方法记录 经过几天不停的网上找资料,实验,终于联通了. 环境:系统:win 2008 ,SqlServer2008 R2, 连接O ...

  8. NGINX 配置404错误页面转向

    什么是404页面 如果碰巧网站出了问题,或者用户试图访问一个并不存在的页面时,此时服务器会返回代码为404的错误信息,此时对应页面就是404页面.404页面的默认内容和具体的服务器有关.如果后台用的是 ...

  9. SpringMVC中用@ParamVariable传递的参数包含斜杠(/)时,匹配不了报404错误的解决方案

    今天做网站[标签]筛选功能时,出现了这么个奇葩的问题. 我是直接通过<a>标签中href来跳转的,url中包含汉字 <a href="/tags/标签A"> ...

随机推荐

  1. IE, FireFox, Opera 浏览器支持CSS实现Alpha透明的方法 兼容问题

    一:要解决的问题时:在ie6-ie11下兼容下面透明上传文件button的效果. 实现方式通过滤镜实现. 二:效果图例如以下: watermark/2/text/aHR0cDovL2Jsb2cuY3N ...

  2. hdu2062(递推)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2062 详细分析:http://mamicode.com/info-detail-95273.html ...

  3. C++ 中获取 可变形參函数中的參数

    #include <iostream> #include <stdarg.h> using namespace std; int ArgFunc(const char * st ...

  4. 重构后的ConditionHelper

    两三个月前曾写过<重构ConditionHelper>的随笔,但不知是因为写得不够好还是没有什么新意,我发表至博客园首页时被屏蔽了,本着好的知识应该分享给更多人,加之新项目已交付用户使用所 ...

  5. The Django template language 阅读批注

    The Django template language About this document This document explains the language syntax of the D ...

  6. jersey client上传下载文件

    jersey client上传文件demo File file = new File("/tmp/test.jpg"); System.out.println(file.exist ...

  7. 【译】ASP.NET MVC 5 教程 - 9:添加新字段

    原文:[译]ASP.NET MVC 5 教程 - 9:添加新字段 在本节中,我们将使用Entity Framework Code First 数据迁移功能将模型类的改变应用到数据库中. 默认情况下,当 ...

  8. 浅谈JAVA ThreadPoolExecutor(转)

    这篇文章分为两部分,前面是ThreadPoolExecutor的一些基本知识,后一部分则是Mina中一个特殊的ThreadPoolExecutor代码解析.算是我的Java学习笔记吧. 基础 在我看来 ...

  9. hdu3652(数位dp)

    题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=3652 题意:求1~n含有13且能被13整除的数的个数. 分析:数位dp,dp数组加一维来维护到pos位 ...

  10. EJBTimer 使用EJB提供的定时器

    一.说明 EJB提供的定时器有两种,自动定时器和自定义定时器,自动定时器设置使用简单但是扩展较为麻烦,自定义定时器有较好的扩展性. 下面的例子中是把两中方式放到了一个测试类中. 二.示例 import ...