public class ActivityAction extends CoreAction { private static final Logger log = Logger.getLogger(ActivityAction.class); @Autowired private ActivityMng activityMng; @Service @Transactional public class ActivityMngImpl extends CoreManagerImpl<Activi…
一.通用注解 1.项目结构: 2.新建Person类,注解@Component未指明id,则后期使用spring获取实例对象时使用默认id="person"方式获取或使用类方式获取 package hjp.spring.annotation.commen; import org.springframework.stereotype.Component; //@Component @Component("personId") public class Person {…