首页 > 代码库 > SpringMVC学习记录
SpringMVC学习记录
1E)Spring MVC框架
①Jar包结构:
docs+libs+schema.
版本区别:核心包,源码包。
SpringMVC文档学习;
学习三步骤:
1)是什么?
开源框架
2)做什么?
IOC :依赖注入。是一种设计模式
set()方式注入
AOP:
3)怎么做?
②创建一个简单的Spring框架
代码目录结构如下:
步骤:
1)创建JavaBean
2)创建Dao,和Service类
3)写好配置文件applicationContext.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"
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.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">
<bean id="userBean" class="Spring_Bean.UserBean">
<property name="username" value="kam"></property>
<property name="password" value="123456"></property>
</bean>
<bean id="userDao" class="Spring_Dao.UserDaoImpl"></bean>
<bean id="userService" class="Spring_Service.UserServiceImpl">
<property name="daoInf" ref="userDao"></property>
</bean>
</beans>
今天的内容基本就这样。
来自为知笔记(Wiz)
SpringMVC学习记录
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。