配置说明
<context:annotation-config />
- 使用这句话,会是已经注册过的bean生效,注意:是已经注册过的bean。
它会帮我们注册四个bean - AutowiredAnnotationBeanPostProcessor
- CommonAnnotationBeanPostProcessor
- PersistenceAnnotationBeanPostProcessor
- RequiredAnnotationBeanPostProcessor
<context:component-scan>
- scan配置已经包含了上句config,同时,它会根据我们的注解去自动生成我们需要的bean, 并使它们生效
- exclude-filter 不包含xxx注解
- include-filter 包含xxx注解
<jpa:repositories base-package = "XXX">
- 设置自己的repository,并让其自动帮我们根据注解生效,注意:使用该配置之后,需要将我们的repository在scan中利用exclude-filter过滤掉
node_webpos
完成目标
卡片一
- 商品列表,购物车,付款页面的显示,
- 能够将商品加入购物车。
- 能够在购物车详情页显示正确的数目和价格同时可以修改数
- 能够计算出正确的总价。
卡片二
- 能够在后台显示数据库中的商品总数,并且能在默认管理页进行修改
- 能够在商品添加页添加商品。
- 能够在添加属性页添加商品属性。
- 能够在商品详情页对商品进行修改。
卡片三
- 能够通过输入打折规则筛选的需要打折的商品。