简单工厂模式Gof23+++小型mybatis+spring的整合总结



一.代码无错就是优----简单工厂模式

 1.1)命名的规范性。

   2)判断语句的合理写法。

   3)考虑不肯能成立的条件。

 2.活字印刷,面向对象

   1)可维护

   2)可扩展

   3)可复用

   4)灵活性好

 3.面向对象的好处

复用和复制,业务的封装

 4. 业务逻辑和界面逻辑分开

 5.紧耦合和松耦合

 6.简单工厂模式就是如何去实例化对象的问题

注:UML的知识点补充

空三角形+实线:继承关系

Interface+棒棒糖:接口

空三角形+虚线:接口的实现

实线箭头:关联关系

空菱形+实线:聚合关系

实菱形+实线:拥有关系

虚箭头:依赖关系

开发j2ee的一些小总结:

 

1.建立如图所示的java工程

简单工厂模式Gof23+++小型mybatis+spring的整合总结_第1张图片

其中com.tju.mapper中存放的是mapper文件,必须有相同的名字,而且UserMapper.xml中的命名空间是UserMapper.java的包路径。

其中UserMapper.java

package com.tju.mapper;
import java.util.List;
import com.tju.pojo.User;
public interface UserMapper {
	//查询用户通过id
	public User findUserById(int id) throws Exception;
}
其中UserMapper.xml







	
文件com.tju.pojo中存放的是简单User.java类

package com.tju.pojo;
import java.io.Serializable;
import java.util.Date;
import java.util.List;

public class User implements Serializable{

	private int id;
	private String username;
	private Date birthday;
	private String sex;
	private String address;
	
	
	public int getId() {
		return id;
	}
	public void setId(int id) {
		this.id = id;
	}
	public String getUsername() {
		return username;
	}
	public void setUsername(String username) {
		this.username = username;
	}
	public Date getBirthday() {
		return birthday;
	}
	public void setBirthday(Date birthday) {
		this.birthday = birthday;
	}
	public String getSex() {
		return sex;
	}
	public void setSex(String sex) {
		this.sex = sex;
	}
	
	public String getAddress() {
		return address;
	}
	public void setAddress(String address) {
		this.address = address;
	}
	
	public String toString() {
		return "User [id=" + id + ", username=" + username + ", birthday=" + birthday + ", sex=" + sex + ", address="
				+ address + "]";
	}
}

其中test包作为测试,这是成个程序的主入口,UserDaoImplTest.java的代码如下,是程序运行的开始

package test;
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.tju.mapper.UserMapper;
import com.tju.pojo.User;

public class UserDaoImplTest {
	private ApplicationContext applicationContext;
	@Before
	public void setUp() throws Exception {
		applicationContext = new ClassPathXmlApplicationContext("classpath:spring/applicationContest.xml");
	}

	@Test
	public void testMapper() throws Exception {
		UserMapper userMapper = (UserMapper) applicationContext.getBean("userMapper");
		User user = userMapper.findUserById(1);
		System.out.println(user);
	}
}
下面就是整个程序的配置文件config,分别包含mybatis,spring,db.properties的配置

mybatis下的SqlMapConfig.xml:





	

spring下的applicationContext.xml,其中配置mapperscanner能够自动扫描mapper中的接口函数,自动生成首字母小写的对象:


	
	
		
		
		
		
		
		
	
	
	
	
		
		
		
	
	
	
		
	
其中db.properties:

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/mybatis
jdbc.username=root
jdbc.password=


程序运行的过程是:启动tomcat服务器,先到web.xml中,此时配置了spring中的applicationContext-*.xml,并且还有springmvc.xml配置。然后在applicationContext-dao中链接数据库配置中,配置了mybatis的SqlMapConfig.xml。
















































你可能感兴趣的:(简单工厂模式Gof23+++小型mybatis+spring的整合总结)