ssh整合遇到的异常

1.javax.servlet.ServletException: Circular view path []: would dispatch back to the current....

当没有声明ViewResolver时,spring会注册一个默认的ViewResolver,就是JstlView的实例, 该对象继承自InternalResoureView。
JstlView用来封装JSP或者同一Web应用中的其他资源,它将model对象作为request请求的属性值暴露出来, 并将该请求通过javax.servlet.RequestDispatcher转发到指定的URL.
Spring认为, 这个view的URL是可以用来指定同一web应用中特定资源的,是可以被RequestDispatcher转发的。
也就是说,在页面渲染(render)之前,Spring会试图使用RequestDispatcher来继续转发该请求。

 

通过原因分析,造成问题有两个因素:

  1. 缺省转发
  2. view和path同名

@RequestMapping("/index")
public String query(){
    //代码内容
    return "/index";
}

解决:更改红色字体不相同为止

2.org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [org.springframework.orm.hibernate4.LocalSessionFactoryBean] for bean with name 'sessionFactory' defined in class path resource [spring/applicationContext.xml]; nested exception is java.lang.ClassNotFoundException: org.springframework.orm.hibernate4.LocalSessionFactoryBean

org.springframework.orm.hibernate4.LocalSessionFactoryBean版本出错

解决:红色字体按实际版本修改

3.org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'User' is expected to be of type 'com.dao.question' but was actually of type 'com.dao.User'

原因:名为“ User”的Bean应该是“ com.dao.question”类型,但实际上是“ com.dao.User”类型

引用的类型和声明的类型不一致

 

4.Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'User': Scope 'session' is not active for the current thread; consider defining a scoped proxy for this bean if you intend to refer to it from a singleton; nested exception is java.lang.IllegalStateException: No thread-bound request found: Are you referring to request attributes outside of an actual web request, or processing a request outside of the originally receiving thread? If you are actually operating within a web request and still receive this message, your code is probably running outside of DispatcherServlet: In this case, use RequestContextListener or RequestContextFilter to expose the current request.

原因:一个bean scope为session,引用此bean的其他类的scope不是session,二者不一致导致无法创建,

解决:出错的bean scope为sigleton或prototype

5.java.lang.ClassNotFoundException: javax.xml.bind.JAXBException

 

 故障原因分析

    JAXB API是java EE 的API,因此在java SE 9.0 中不再包含这个 Jar 包。
    java 9 中引入了模块的概念,默认情况下,Java SE中将不再包含java EE 的Jar包
    而在 java 6/7 / 8 时关于这个API 都是捆绑在一起的

3.1 解决方案一

降低JDK 9 版本到 JDK 6/7/8
3.2 解决方案二(亲测可行)

手动加入这些依赖Jar包

要解决这个问题,我导入了下面这四个Jar包修复成功。

javax.activation-1.2.0.jar

jaxb-api-2.3.0.jar

jaxb-core-2.3.0.jar

jaxb-impl-2.3.0.jar

下载上面这些文件和复制他们到libs文件夹下,
添加他们导入到Build Path中
重新运行即可

6.org.hibernate.internal.util.config.ConfigurationException: Could not locate cfg.xml resource [hibernate.cfg.xml]

原因 我的问题在于把hibernate.cfg.xml文件放置在某个包中了,hibernate.cfg.xml文件需要放置在src目录下。 hibernate.cfg.xml没有在src目录下面

解决:把hibernate.cfg.xml放在在src目录下面,顺便把涉及hibernate.cfg.xml的xml文件 的hibernate.cfg.xml路径改下,

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值