1,先写入配置文件.xml
<context:component-scan base-package="com.yinggu"/>
<context:annotation-config/>
2,一个包下面四层
Dao(@Repository)
Service(@Service)
Pojo(@Component)
Controller(@Controller)
来例子
(1),pojo包建立一个user类,写入属性值,并使用注解
@Component
public class User {
@Value("李四")
public String name;
(2)service包建立一个UserService类,并使用注解
@Service
public class UserService {
}
(3)dao包建立一个UserDao类,并使用注解
@Repository
public class UserDao {
}
(4)controller包建立一个UserController类,并使用注解
@Controller
public class UserController {
}
注入完毕,填入自己要是用的方法。
<bean id="user" class="com.yinggu.pojo.User"/>
相当于@Component
注入属性
@Component
public class User {
@Value("李四")
public String name;
}
小编一句提醒,要记得在 配置文件 写入需要的方法