博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring 开发环境搭建(二)
阅读量:6156 次
发布时间:2019-06-21

本文共 3688 字,大约阅读时间需要 12 分钟。

为了方面,直接使用eclipse,创建maven工程,创建成功之后

一、修改pom.xml,为了方面我就把Spring相关的jar包都引用了

4.0.0
com.qunar
studyspring
0.0.1-SNAPSHOT
jar
studyspring
http://maven.apache.org
UTF-8
3.0.5.RELEASE
junit
junit
4.10
test
asm
asm-commons
2.2.3
asm
asm
2.2.3
org.springframework
spring-core
${spring.version}
org.springframework
spring-web
${spring.version}
org.springframework
spring-orm
${spring.version}
org.springframework
spring-jdbc
${spring.version}
org.springframework
spring-context
${spring.version}
org.springframework
spring-aop
${spring.version}
org.springframework
spring-expression
${spring.version}
org.springframework
spring-test
${spring.version}
org.springframework
spring-tx
${spring.version}
org.springframework
spring-webmvc
${spring.version}
net.sourceforge.cglib
com.springsource.net.sf.cglib
2.1.3

二、载入spring.xml文件

三、编写测试代码

package com.qunar.studyspring;import org.junit.Test;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;import com.qunar.studyspring.Service.IPersonService;public class SpringTest {    @Test    public void instanceSpring(){        ApplicationContext ctx = new ClassPathXmlApplicationContext("spring.xml");        IPersonService personService = (IPersonService) ctx.getBean("personService");        personService.save();    }}

代码已经上传,下载地址:

 

转载地址:http://knifa.baihongyu.com/

你可能感兴趣的文章
使用Formik轻松开发更高质量的React表单(三)<Formik />解析
查看>>
也问腾讯:你把用户放在什么位置?
查看>>
CSS Sprites 样式生成工具(bg2css)
查看>>
[转]如何重构代码--重构计划
查看>>
类中如何对list泛型做访问器??
查看>>
C++解析XML--使用CMarkup类解析XML
查看>>
P2P应用层组播
查看>>
Sharepoint学习笔记—修改SharePoint的Timeouts (Execution Timeout)
查看>>
CSS引入的方式有哪些? link和@import的区别?
查看>>
Redis 介绍2——常见基本类型
查看>>
asp.net开发mysql注意事项
查看>>
(转)Cortex-M3 (NXP LPC1788)之EEPROM存储器
查看>>
ubuntu set defult jdk
查看>>
[译]ECMAScript.next:TC39 2012年9月会议总结
查看>>
【Xcode】编辑与调试
查看>>
用tar和split将文件分包压缩
查看>>
[BTS] Could not find stored procedure 'mp_sap_check_tid'
查看>>
PLSQL DBMS_DDL.ALTER_COMPILE
查看>>
Activity生命周期
查看>>
高仿UC浏览器弹出菜单效果
查看>>