coursemanagerimpl.java
来自「seam 源码 新型J2EE柜架 seam 源码 新型J2EE柜架」· Java 代码 · 共 25 行
JAVA
25 行
package com.ibm.dw.open18;import org.appfuse.dao.GenericDao;import org.appfuse.service.impl.GenericManagerImpl;/** * A simple wrapper around the GenericManager interface provided by Appfuse. This wrapper * is needed to ease configuration and make the Spring-Seam integration possible. */public class CourseManagerImpl extends GenericManagerImpl<Course, Long> implements CourseManager { /** * Provide a default contructor to make Cglib happy. * Cglib is required since Seam cannot wrap JDK proxied IoC beans. */ public CourseManagerImpl() { super( null ); } public CourseManagerImpl( GenericDao<Course, Long> courseDao ) { super( courseDao ); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?