springframework专题

Hibernate插入数据时,报错:org.springframework.dao.DataIntegrityViolationException: could not insert: [cn.itc

在用junit测试:插入数据时,报一下错误: 错误原因: package junit;import org.junit.Test;import cn.itcast.crm.container.ServiceProvinder;import cn.itcast.crm.dao.ISysUserDao;import cn.itcast.crm.domain.SysRole;

org.springframework.core.convert.ConversionFailedException

适用: 1.你在springmvc.xml中写了静态资源处理<mvc:resources location="/" mapping="/**"></mvc:resources> 2.你在springmvc.xml中写了日期类型转换 解决方法: 首先检测你的spring版本,然后 1.spring3.0后将<mvc:resources location="/" mapping="/**">

org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 24 in XML document from

org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 24 in XML document from class path resource [bean1.xml] is invalid; nested exception is org.xml.sax.SAXParseException; lineN

上传文件,org.springframework.web.multipart.MultipartFile 为何可重复读(重复获取getInputStream())

问题引出: 我们知道有些流是可以读一次,有些可以重复读:原理参看java io流可重复读与不可重复读_GOODDEEP-CSDN博客   debug发现,在上传文件时的MultipartFile 实例的实现类为​org.springframework.web.multipart.support.StandardMultipartHttpServletRequest.StandardM

org.springframework.orm.hibernate3.HibernateQueryException: unexpected token: 29 near line 1, column

@SuppressWarnings("unchecked")   public List<Strudent> getStudent(int count) {       String hql = "select top "+count+" from Student";       return (List<Student>)getHibernateTemplate().fin

深入springMVC------文件上传源码解析(上篇) 最近在项目中,使用springmvc 进行上传文件时,出现了一个问题: org.springframework.web.multipart

最近在项目中,使用springmvc 进行上传文件时,出现了一个问题: org.springframework.web.multipart.MultipartException: The current request is not a multipart request .... 以上堆栈信息省略。 乍看一下,没啥值得讨论的地方,就是说当前这个请求不是一个multipart reques

Spring在web.xml请求中定义编码(org.springframework.web.filter.CharacterEncodingFilter)

<!-- Filter 定义 --><!-- Character Encoding filter --><filter><filter-name>encodingFilter</filter-name><filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class><init-param><pa

Context namespace element 'annotation-config' and its parser class [org.springframework.context.anno

严重: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListenerorg.springframework.beans.factory.BeanDefinitionStoreException: Un

java lang NoClassDefFoundError org springframework util MimeType

缺少spring-core.jar这个包,我是maven项目 ,故在pom.xml里面添加了该jar包的依赖就好了

nested exception is java.lang.NoSuchMethodError: org.springframework.http.MediaType.getCharset()

我的代码调用了一个http接口,抛出了如下异常: org.springframework.web.util.NestedServletException: Handler processing failed; nested exception is java.lang.NoSuchMethodError: org.springframework.http.MediaType.getCharset

异常--Error creating bean with name 'org.springframework.context.annotation.internalAsyncAnnotationPro

一月 17, 2018 9:35:48 上午 org.apache.tomcat.util.digester.SetPropertiesRule beginWARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server

java.lang.NoClassDefFoundError:org / springframework / cglib / transform / impl / MemorySafeUndeclar

将aop的版本修改为4.0.3.RELEASE maven仓库 <dependency>     <groupId>org.springframework</groupId>    <artifactId>spring-aop</artifactId>    <version>4.0.3.RELEASE</version> </dependency>

SSH整合时Tomcat启动报错:org.springframework.beans.factory.BeanCreationException: Error creating bean with n

SSH整合时Tomcat启动报错:org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in class path resource [applicationContext.xml]: Invocation of init met

webservice 报错:org.springframework.web.SpringServletContainerInitializer cannot be cast to javax.serv

背景说明:在做spring和apache cxf整合实现webservice的服务端时,启动程序报: 奶奶的,就因为这个问题,解决了一下午。我的pom 文件的内容如下: <?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www

org.springframework.dao.InvalidDataAccessApiUsageException: Error attempting to get column 'update_t

升级mybatis-plus到最新3.3.0的时候报错。因为druid连接池也需要更新到最新版本,要不然它不支持。或者你更换你的连接池为hikari这个连接池也不错

java.lang.ClassNotFoundException: org.springframework.web.context.request.RequestContextListener

今天遇到一个很奇葩的问题 在web.xml里面配置spring的监听器 说找不到类 <listener><listener-class>org.springframework.web.context.request.RequestContextListener</listener-class> </listener> 之前启动是没问题的 今天居然说找不到类了 我的环境是mave

java: 无法访问org.springframework.ldap.core.LdapTemplate

完整错误: java: 无法访问org.springframework.ldap.core.LdapTemplate错误的类文件: /E:/apache-maven-3.6.3/repository/org/springframework/ldap/spring-ldap-core/3.2.3/spring-ldap-core-3.2.3.jar!/org/springframewor

Spring -- org.springframework.aop.framework.ProxyFactoryBean

配置 <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/sch

SpringFramework实战指南

二、SpringFramework实战指南 目录 一、技术体系结构 1.1 总体技术体系1.2 框架概念和理解 二、SpringFramework介绍 2.1 Spring 和 SpringFramework概念2.2 SpringFramework主要功能模块2.3 SpringFramework 主要优势 三、Spring IoC容器和核心概念 3.1 组件和组件管理概念3.2 Sprin

Error:(6, 43) java: 程序包org.springframework.data.redis.core不存在

目录 一、在做SpringBoot整合Redis的项目时,报错: 二、尝试 三、解决办法 一、在做SpringBoot整合Redis的项目时,报错: 二、尝试 给依赖加版本号,并且把版本换了个遍,也不行,也去update过maven的远程仓库地址、重新下载jar,导入本地仓库,都不行。 但可以确定是,这个问题和redis依赖导入异常有关。 三、解决办法 换了依赖

Failed to read artifact descriptor for org.springframework.cloud:spring-cloud-starter-zuul:jar:1.3.1

在搭建分布式系统,建一个Zull微服务时,集成Zuul,在pom文件导入Zuul的依赖时,一直报错: Failed to read artifact descriptor for org.springframework.cloud:spring-cloud-starter-zuul:jar:1.3.1.RELEASE 网上逛了很久,没有找到能解决的办法,自己死磕了很久,最终完美解决。 问题:

解决“Failed to read artifact descriptor for org.springframework.cloud:spring-cloud-st”

今天在建立eureka微服务过程中,pom文件中一直报“Failed to read artifact descriptor for org.springframework.cloud:spring-cloud-st”的错误,并且在启动类上添加注解@EnableEurekaServer,显示不存在该注解。原因是没有正确导入eureka需要的依赖。 eureka微服务中pom文件如下 <proj

'hibernateTemplate' must be of type [org.springframework.orm.hibernate5.HibernateTemplate]

‘hibernateTemplate’ must be of type [org.springframework.orm.hibernate5.HibernateTemplate], but was actually of type [org.springframework.orm.hibernate3.HibernateTemplate] 详细错误提示如下: 警告: Exception en

Spring 报错java.lang.NoClassDefFoundError: org/springframework/dao/support/DaoSupport

spring + mybatis项目报错, java.lang.NoClassDefFoundError: org/springframework/dao/support/DaoSupport 添加如下依赖即可,注意springframework选择自己的版本号 <dependency><groupId>org.springframework</groupId><a

org.springframework.jdbc.BadSqlGrammarException

Cause: java.sql.SQLSyntaxErrorException: Table ‘web.emp’ doesn’t exist 产生原因:web表找不到,所以可能数据库配置错误 spring.datasource.url=jdbc:mysql://localhost:3306/web02 更改完成后运行成功

(已解决)org.springframework.amqp.rabbit.support.ListenerExecutionFailedException

报错截图 解决方案 1、登录rabbitMQ网址,删除所有队列 2、重启rabbitMQ 亲测有效!!!亲测有效!!!亲测有效!!!