/** * * ----------------------------------------------------------------------- * * QATARLYST LIMITED * * ----------------------------------------------------------------------- * * (C) Copyright 2012 Qatarlyst Limited. All rights reserved. * * NOTICE: All information contained herein or attendant hereto is, * and remains, the property of Qatarlyst Limited. Many of the * intellectual and technical concepts contained herein are * proprietary to Qatarlyst Limited. Any dissemination of this * information or reproduction of this material is strictly * forbidden unless prior written permission is obtained * from Qatarlyst Limited. * * ----------------------------------------------------------------------- * */ package com.qatarlyst.springproblem; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.ComponentScan.Filter; import org.springframework.context.annotation.Configuration; import com.qatarlyst.springproblem.scanpackage.Component; @Configuration @ComponentScan(value = { "com.qatarlyst.springproblem.scanpackage" }, includeFilters = { @Filter(MarkerAnnotation.class) }) public class LowLevelContext { @Autowired private Component component; }