随笔分类 -  Spring-Framework

摘要:效果图一共3个页面:注册页,欢迎页,用户列表页很简单的例子,主要是为了把流程走通,没有各种验证。注册页: 欢迎页: 用户列表页: 源码地址https://github.com/lemonbar/spring-framework-mongodb参考文档Spring framework:http:... 阅读全文
posted @ 2014-08-20 15:21 lemon_bar 阅读(4054) 评论(0) 推荐(0)
摘要:在继续讲解Spring MVC之前,需要说一下常用的几个用来标记stereotype的annotation。@Component,@Controller,@Repository,@Service。这四个都在org.springframework.stereotype包下面,后面3个都属于@Compo... 阅读全文
posted @ 2014-08-11 13:35 lemon_bar 阅读(10719) 评论(0) 推荐(0)
摘要:1. 通过构造函数实现DI简单类型实例package examples;public class ExampleBean { // Number of years to calculate the Ultimate Answer private int years; // The ... 阅读全文
posted @ 2014-08-07 12:28 lemon_bar 阅读(514) 评论(0) 推荐(0)