《一头扎进Spring4》学习笔记简介与helloworld实现
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《一头扎进Spring4》学习笔记简介与helloworld实现相关的知识,希望对你有一定的参考价值。
第一讲 问候Spring4
第一节 简介
Spring是一个开源框架,Spring是于2003 年兴起的一个轻量级的Java 开发框架,由Rod Johnson创建。简单来说,Spring是一个分层的JavaSE/EEfull-stack(一站式) 轻量级开源框架。
1、框架特征
2、特性
3、特点
4、好处
5、作用
第二节 hello world 实现
目录结构
1、核心jar包
2、beans.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="helloworld" class="com.jave.test.HelloWorld"></bean>
</beans>
3、测试
public class Test {
public static void main(String[] args) {
// TODO Auto-generated method stub
ApplicationContext ac=new ClassPathXmlApplicationContext("beans.xml");
HelloWorld helloworld=(HelloWorld) ac.getBean("helloworld");
helloworld.say();
}
}
以上是关于《一头扎进Spring4》学习笔记简介与helloworld实现的主要内容,如果未能解决你的问题,请参考以下文章
《一头扎进》系列之Python+Selenium框架设计篇6 - 价值好几K的框架,呦!这个框架还真牛叉哦!!!
《一头扎进》系列之Python+Selenium框架实战篇4- 价值好几K的框架,呵!这个框架有点意思啊!!!
《一头扎进》系列之Python+Selenium框架设计篇3- 价值好几K的框架,狼来了,狼来了....,狼没来,框架真的来了