论坛首页 Java企业应用论坛

Spring Annotation的探討

浏览 1922 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2008-03-26  
前段時間看了下Spring Annotation的介紹 覺得挺简洁的,所以自己学着做了个 现贴出来和大家共同探讨探讨

applicationContext的主要配置如下
<context:component-scan base-package="com.morris"/>  
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" p:prefix="/WEB-INF/jsp/" p:suffix=".jsp"/>


简单吧 不需要注入任何bean

再来看看action
/**
 * @author morris
 * @version 1.0 2008/03/25
 */

@Controller
public class AgentController {
	
	@Autowired
	private AgentService agentService;  
		
	@RequestMapping("/agent/agentBaseData.do")   
	public void initAgentBaseData(Agent agent, ModelMap model){
		List baseDataList = agentService.findBaseDataList(agent);
		model.addAttribute("baseDataList", baseDataList);
	}
}


接着看
/**
 * @author morris
 * @version 1.0 2008/03/25
 */

//普通接口
public interface AgentService {	
	public List findBaseDataList(Agent agent);
}


再来看看接口的实现 很关键的哦 

/**
 * @author morris
 * @version 1.0 2008/03/25
 */

@Component    //自动注入bean
public class AgentServiceImpl implements AgentService{

	@Autowired
	private AgentDao dao;
	
	public List findBaseDataList(Agent agent){
		return dao.findBaseDataList(agent);
	}
}


后面接着用同样的方法调用DAO 就不多说了 简单吧
论坛首页 Java企业应用版

跳转论坛:
Global site tag (gtag.js) - Google Analytics