为啥myeclipse无法自动导入spring的jar包?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为啥myeclipse无法自动导入spring的jar包?相关的知识,希望对你有一定的参考价值。
我使用的是myeclipse6.6版本的,创建一个项目后,以前右键点击项目会出现myeclipse菜单下的add spring capabilities以及add Hibernate capabilities的子菜单,但自从我安装了springide就找不到这两项了,是不是有地方可以设置这些菜单,如何设置?谢谢!
参考技术A 直接右键就可以添加哦。add spring capability.myeclipse中如何为一个项目配置spring
如何在myeclipse中为一个普通的项目导入spring框架呢?
1.新建一个工程,在src目录下,新建一个lib文件夹,存放spring所需要的jar包
2.导入springjar包:
commons-logging-1.1.1.jar
org.springframework.beans-3.1.1.RELEASE.jar //springIoC(依赖注入)的基础实现。
org.springframework.context-3.1.1.RELEASE.jar //spring 提供在基础 IoC 功能上的扩展服务,此外还提供许多企业级服务的支持,如 邮件服务、任务调度、JNDI定位、EJB 集成、远程访问、 缓存以及各种视图层框架的封装等。
org.springframework.core-3.1.1.RELEASE.jar //spring3.1的核心工具包。
org.springframework.expression-3.1.1.RELEASE.jar //spring 表达式语言。
org.springframework.asm-3.1.1.RELEASE.jar //spring 独立的asm 程序,相比2.5版本,需要额外的asm.jar包。
3.选中这几个jar包,右键,选择Build Path->Add to Path:
4.在src下新建一个xml文件,命名为applicationContext.xml,作为spring的核心配置文件,通用代码如下:
<?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:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
<!--创建Bean,有指定的id,对应的class-->
<!--注意:此处的id是作为bean的标志名,调用bean时会用到,class必须为这个bean的类路径(包名.类名)-->
<bean id="hellobean" class="com.zjy.spring.beans.HelloWorld">
<property name="name" value="ZJY"></property>
</bean>
</beans>
5.完成配置,建立bean类,进行测试。
本文出自 “11179738” 博客,请务必保留此出处http://11189738.blog.51cto.com/11179738/1742697
以上是关于为啥myeclipse无法自动导入spring的jar包?的主要内容,如果未能解决你的问题,请参考以下文章
spring-cloud导入eclipse时,slf4j注解为啥找不到log变量
Spring1:Spring简介环境搭建源码下载及导入MyEclipse
myeclipse2015不支持spring-web-3.2.3.RELEASE.jar吗