spring框架
InnerVol
计算机专业起步较晚虽然菜但喜欢数学英语语文写代码专研的感觉看书写字
展开
-
Exception in thread "main" org.springframework.beans.factory.BeanDefinitionStoreException
用spring写的java工程,其中Bean对象的属性值通过db.properties加载。spring容器通过applicationContext.xml文件配置实现。启动Java工程后提示如下图所示异常(bean对象定义异常):检查了一下两个配置文件,发现自己在properties文件中写的Bean的属性字段名跟在xml文件中相应的属性名不一致造成出错。改正后正常运行。出现该错误的原创 2017-12-02 16:23:24 · 1672 阅读 · 0 评论 -
The fully qualified name of the bean's class, except if it serves only as a parent definition ...
spring工程在配置configuration.xml文件时,提示这个错误:The fully qualified name of the bean's class, except if it serves only as a parent definition for child bean definitions.刚开始不知道是什么原因造成的,后来发现是jar包导入的不完整。添原创 2017-12-02 18:32:39 · 9998 阅读 · 1 评论 -
如何在sring官网下载需要的jar包
1.进入spring仓库的这个网址:(repo.spring.io) 点击打开链接2.主页面如下如所示,r然后点击左侧Artifacts进入;.3.在搜索框中搜索"lib-release-local",进入下一级目录;.4.找到spring目录选项,点击后可以看到不同版本号的release文件,选择你要下载的对应版本号的release文件进入其下一级目录;原创 2017-12-03 00:05:50 · 789 阅读 · 0 评论 -
eclipse如何安装spring插件(以ubuntu为例)
最近学到Java EE的spring 框架,需要安装spring插件,于是就开始了第一步安装插件;1.先看在help->about eclipse中查看自己eclipse的版本:(我的eclipse版本4.7.1,因为待会链接下载要用到版本号下载对应插件压缩包)2.进入插件下载官网:http://spring.io/tools/sts/all,使用链接下载:(选择对应eclipse版本原创 2017-11-26 00:05:10 · 861 阅读 · 0 评论 -
spring官网下载时.dist,.docs,.schema后缀分别代表什么意思
.dist后缀表示该文件夹下存放的是jar包,文档和项目;.docs后缀表示该文件夹下存放相关文档,开发指南和API;.schema里存放了spring4所用的xsd文件。注:xsd文件即XML结构定义(XML schemas definition),它描述了XML文档的结构。原创 2017-11-27 13:19:03 · 6295 阅读 · 0 评论 -
BeanFactory not initialized or already closed - call 'refresh' before accessing beans解决
今天在写sring工程时运行报错。提示BeanFactory未实例化或已经关闭。查看并改正了一下错误。1.我创建的是web工程,在web.xml中将contextConfigLocation改成classpath:***.xml即可;(***是你Bean的配置文件名);2.如果创建的不是web工程,则可能是如下产生的错误:ApplicationContext ctx = new Cla原创 2017-11-28 13:00:52 · 16523 阅读 · 4 评论 -
springMVC和struts2的区别
Apache Struts 2 and SpringMVC, these two are the most popular and much talked about Java web frameworks today. Many of you might have worked with both of these frameworks, but which is one is better t转载 2017-12-29 23:55:23 · 298 阅读 · 0 评论