大三东软暑期实训-spring篇2
Posted Fire king
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了大三东软暑期实训-spring篇2相关的知识,希望对你有一定的参考价值。
- 使用@Component、@Service、@Controller、@Repository等在自定义类上并在spring.xml配置类似
<context:component-scan base-package="edu.xlh.pojo02"/>
就可以交给spring管理,同时默认bean的id为类名全小写,如果要id自定义,就要诸如@Component(“a”),bean的id就是a。 - 没有@Component、@Service、@Controller、@Repository等在自定义类上就没有交给spring管理,那么spring中底层以set注入的@Value(value="")或者@Value("")就无法生效。
以上是关于大三东软暑期实训-spring篇2的主要内容,如果未能解决你的问题,请参考以下文章