Servlet.init() for servlet [springmvc] threw exception

项目还没开始做,就碰到那么多问题。。

报错一:/oa/news/%E6%A0%8F%E7%9B%AE%E7%AE%A1%E7%90%86.jsp

1.一开始是jsp的页面名称为中文,改了

2.接着仍然这样错误,我想可能没有重新加载,把target文件删掉解决了。

报错二:Artifact tlks: com.intellij.javaee.oss.admin.jmx.JmxAdminException: com.intellij.execution.ExecutionException: E:\IDEAspace\tlksArtfacts\tlks.war not found for the web module.

1.把target文件删了之后,我见tomcat上得war包丢失了。在project->Artifact里把war包移除掉,然后重新刷新了maven,war包会自动生成,也会显示在Artifact里。然后重新部署war包就行了。这个方法是不是百灵还需验证。

报错三: Servlet.init() for servlet [springmvc] threw exception

1.如果写了<mvc:annotation-driven />的时候,idea推荐的XML约束是cache的,检查是不是已经改为mvc的了。

...https://www.springframework.org/schema/mvc/spring-mvc.xsd">

2.看了看控制台报错是:org.springframework.beans.factory.BeanCreationException:Error creating bean with name ‘mySqlSessionFactory‘ defined.原来是创建spring-dao.xm中创建sqlsession工厂时错误,

这个东西加载了mybatis文件,mybatis又加载了映射文件。我把mybatis.xml,和映射文件查了查,最后子啊映射文件中发现问题:就是再resultType里我写了Blog类型,以为我没点击查询,实际点击菜单就进行了查询请求。(最后忠告:不要再配置文件中写多余的东西,比如我这次测试只是想显示下前端模板,就不要写查询语句)

<select id="findPage" resultType="Blog">    select * from Blog where id = #{id}</select>

原文地址:https://www.cnblogs.com/hyjh/p/11990770.html

时间: 2024-10-12 21:36:18

Servlet.init() for servlet [springmvc] threw exception的相关文章

javax.servlet.ServletException: Servlet.init() for servlet springmvc threw exception

e'cipse中,项目没报错,正常启动,访问控制器时报错 javax.servlet.ServletException: Servlet.init() for servlet springmvc threw exception org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:502) org.apache.catalina.valves.ErrorReportValve.invok

项目中访问controller报错:HTTP Status 500 - Servlet.init() for servlet spring threw exception

直接访问controller路径http://localhost:8080/index报错: HTTP Status 500 - Servlet.init() for servlet spring threw exception type Exception report message Servlet.init() for servlet spring threw exception description The server encountered an internal error th

关于springmvc的context:component-scan 标签使用时HTTP Status 500 - Servlet.init() for servlet springmvc threw exception的问题

首先是控制器的配置: 1 package cn.cuibusi.ssm.controller; 2 3 import java.util.ArrayList; 4 import java.util.List; 5 import org.springframework.stereotype.Controller; 6 import org.springframework.web.bind.annotation.RequestMapping; 7 import org.springframework

HTTP Status 500 - Servlet.init() for servlet springmvc threw exception

自己的当前环境是ubuntu14.04 64位,tomtcat7和tomcat8,eclipse luna,然后跑了一直spring的demo项目爆了上述的错误,由于这个项目用的是spring3.2在多次尝试之后都不能跑起来我就猜测这个spring版本太低了,然后就把自己手头的srping4.0的jar包放进去然后项目就跑起来了. 在eclipse下面还报了一个 Failed to read candidate component class 的错误,当更换jar包之后消失了

HTTP Status 500 - Servlet.init() for servlet CXFServlet threw exception

     root cause java.lang.RuntimeException: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.apache.cxf.wsdl.WSDLManager' defined in URL [jar:file:/D:/Program%20Files/apache-tomcat-8.0.21/webapps/PCServer/WE

Servlet.init() for servlet [spring-dispatcher] threw exception

在ssm商铺开发1.0中遇到该问题,之前项目运行正常,在电脑安装jdk1.6之后出现该问题,具体报错如下 解决办法: eclipse中将jdk切换回1.8,在window配置中将相关jdk都切换.是jdk与其他之间的兼容问题.我在切换回之后问题消失,但是隔天再次出现该问题.最后将eclipse重安装,将环境重新搭建(eclipse的环境),最后解决该问题. 很可能是之前eclipse环境搭建混乱,卸载有残留,导致不兼容. 这是本人本次问题解决办法. 原文地址:https://www.cnblog

Servlet init

我们从常用的HttpServlet来看. HttpServlet extends: GenericServlet All Implemented Interfaces: java.io.Serializable, Servlet, ServletConfig 接口Servlet中定义了init(ServletConfig)方法 init public void init(ServletConfig config) throws ServletException Called by the ser

【SpringMVC】Marking servlet dispatcherServlet as unavailable org.apache.catalina.core.StandardContext.loadOnStartup Servlet [springDispatcherServlet] in web application [] threw load() exception

Marking servlet dispatcherServlet as unavailable org.apache.catalina.core.StandardContext.loadOnStartup Servlet [springDispatcherServlet] in web application [] threw load() exception Java.lang.ClassNotFoundException: org.springframework.web.servlet.D

严重: Servlet.service() for servlet [spring] in context with path [/XX] threw exception [Request

一.描述:最近在使用springmvc+spring+hibernate4.0进行整合开发时出现了 严重: Servlet.service() for servlet [spring] in context with path [/XX] threw exception [Request processing failed; nested exception is org.hibernate.HibernateException: No Session found for current thr