05测试BaseDao和BaseAction

新建一个IUserDao接口和一个UserDaoImpl
@Repository--->由Spring去创建UserDaoImpl的对象,spring会扫描到这个包,因为配置了



BaseAction

package com.itheima.web.action;

import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Controller;

import com.itheima.bos.domain.User;
import com.itheima.web.action.base.BaseAction;

@Controller
@Scope("prototype")

//多例,每个类创建多个对象
//服务器在启动的时候不会加载UserAction的实例对象,也就是说没有创建UserAction的实例
//它会在使用的时候创建UserAction的实例对象.

public class UserAction extends BaseAction {

}

你可能感兴趣的:(05测试BaseDao和BaseAction)