⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 coursemanagerimpl.java

📁 seam 源码 新型J2EE柜架 seam 源码 新型J2EE柜架
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -