Spring环境搭建错误

1,cvc-complex-type.2.4.c

此错误是因为导使用jar包都是spring 4.0的jar包,但是配置文件引入的xsd文件版本不对,或者少引入了xsd文件导致。

2,


Exception in thread "main" org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘juggler‘ defined in class path resource [chp04/aop/spring.xml]: BeanPostProcessor before instantiation of bean failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘org.springframework.aop.aspectj.AspectJPointcutAdvisor#0‘: Cannot create inner bean ‘(inner bean)‘ of type [org.springframework.aop.aspectj.AspectJMethodBeforeAdvice] while setting constructor argument; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘(inner bean)‘: Cannot create inner bean ‘(inner bean)‘ of type [org.springframework.aop.aspectj.AspectJExpressionPointcut] while setting constructor argument; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘(inner bean)#2‘: Instantiation of bean failed; nested exception is java.lang.NoClassDefFoundError: org/aspectj/weaver/tools/PointcutDesignatorHandler

主要错误信息为两点:


BeanPostProcessor before instantiation of bean failed

 Cannot create inner bean ‘(inner bean)‘ of type 

这种错误是缺少jar包:aspectjrt.jar、aspectjweaver.jar

两个jar包。

时间: 2024-10-10 03:33:13

Spring环境搭建错误的相关文章

Spring环境搭建之:导入jar包、配置文件名称及放置位置

Spring环境搭建之:导入jar包.配置文件名称及放置位置 现在项目开发中spring框架应用的还是比较多的,自己用的还不太熟练,每次用的时候总配置半天,总有些配置弄错,就找个时间总结以下,方便以后再搭建环境的时候直接拿来用. 以Spring4为例,这里就不提供Spring的下载地址了,官网上很容易下的到. 1.导入相关jar包 建好web项目以后,导入Spring自己的jar包 spring-beans-4.0.0.M2.jar spring-context-4.0.0.M2.jar spr

spring环境搭建以及和struts整合

1.首先导入spring所需要的包 2.web.xml中添加spring的监听器以及spring配置文件所在位置 <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <context-param> <param-name>contextConfigLocation<

【Spring环境搭建】在Myeclipse下搭建Spring环境-web开发

<?xml version="1.0" encoding="UTF-8"?> <web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.s

spring环境搭建

在做ssh环境搭建时,先搭建spring和hibernate的环境搭建,在搭建struts环境. 好处:在搭建struts环境之前出的错和web容器无关. 一.引入配置文件 1:从已有的配置文件复制过来 2:通过xml模板新建配置文件: a:首先进行applicationContext.xml文件提示配置(下次再配置可省略此步骤): Window----preferences----输入xml----选择xml Catalog----add配置 b:右键new---XML(Basic Templ

环信webim1.1.2版本在windows下npm环境搭建错误解决

1.1.2版本的webim从ui到整体的代码结构都做了很大改变,从代码结构上采用node.js的环境进行开发和打包,最终打包的输出项目,不依赖node.js的环境进行运行,得益于webpack的打包实现. 这里有详细的管网介绍:http://www.imgeek.org/article/825308179 下载地址:https://github.com/easemob/web-im/releases/tag/v1.1.2 先说明一下在搭建node.js环境时到打包碰到的问题: 前提:必须成功搭建

zabbix监控环境搭建错误(1)

我们在搭建zabbix监控时由于自己的操作错误会出现下图的错误: 我们在组态中创建动作时:要是在动作那栏把配置写好后直接点存档后就会出现如图上的错误,具体解决方法如下 点到操作选项并添加新的动作操作后将配置填好后先点添加最后点存档,要不然就会报图1的错误!

1.2 Spring环境搭建--Spring源码深度解析

前言: Spring 的源码已经从 svn 迁移到 GitHub.而且也改为基于 Gradle 的构建来构建项目.它取代了之前的 Ant+Ivy 系统,所以要构建 Spring 源码环境首先要安装 GitHub 以及 Gradle. 安装 GitHub Windows 系统对应的 GitHub 版本下载地址为: http://windows.github.com/.如图所示:

Spring 环境搭建

一.需要的Jar包 二.web.xml 配置文件的修改 spring有三种启动方式,使用ContextLoaderServlet,ContextLoaderListener和ContextLoaderPlugIn,spring3.0及以后版本中已经删除ContextLoaderServlet 和Log4jConfigServlet,可以采用余下两种启动方式ContextLoaderListener和ContextLoaderPlugIn,建议使用ContextLoaderListener. 第一

spring环境搭建(简单实例)

1使用Maven导入需要的依赖(在project标签下) <properties> <spring_version>3.2.2.RELEASE</spring_version> </properties> <!--spring依赖--> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</ar