常见的注解:
@controller @service @repository @component
@Component,@Service,@Controller,@Repository注解的类,并把这些类纳入进spring容器中管理。
下面写这个是引入component的扫描组件
<context:component-scan base-package=”com.mmnc”>
其中base-package为需要扫描的包(含所有子包)
@Service public class UserServiceImpl implements UserService { }
@Repository public class UserDaoImpl implements UserDao { }
getBean的默认名称是类名(头字母小写),如果想自定义,可以 @Service(“ * ”)
这样来指定,这种bean默认是单例的,如果想改变,可以使用@Service(“beanName”)
@Scope(“prototype”)来改变。可以使用以下方式指定初始化方法和销毁方法(方法名任意): @PostConstruct public void init() { }