zoukankan      html  css  js  c++  java
  • SSH框架中新建立实体类后的配置

    strut 层

    public class Sellauthentication extends ActionSupport {
        private SellauthenticationService SellauthenticationService;
             
        public SellauthenticationService getSellauthenticationService() {
            return SellauthenticationService;
        }
        public void setSellauthenticationService(
                SellauthenticationService sellauthenticationService) {
            SellauthenticationService = sellauthenticationService;
        }
       
        
    }

    spring 层

    public interface SellauthenticationService {
      
    }

    public class SellauthenticationServiceImpl implements SellauthenticationService {
        private SellauthenticationDao SellauthenticationDao;

        public SellauthenticationDao getSellauthenticationDao() {
            return SellauthenticationDao;
        }

        public void setSellauthenticationDao(SellauthenticationDao sellauthenticationDao) {
            SellauthenticationDao = sellauthenticationDao;
        }   
        
    }

    hibernate 层

    public interface SellauthenticationDao {

    }

    public class SellauthenticationDaoImpl extends HibernateDaoSupport implements SellauthenticationDao{
      
    }

    spring 配置文件

    <bean id="Sellauthentication"
            class="com.ruituo.showyuu.action.adminuseraction.Sellauthentication" scope="prototype">
            <property name="SellauthenticationService" ref="SellauthenticationService" />
        </bean>

    <bean id="SellauthenticationService" class="com.ruituo.showyuu.service.second.impl.SellauthenticationServiceImpl">
            <property name="SellauthenticationDao" ref="SellauthenticationDao"/>
        </bean>

    <bean id="SellauthenticationDao" class="com.ruituo.showyuu.dao.second.impl.SellauthenticationDaoImpl">
            <property name="sessionFactory" ref="sessionFactory"/>
        </bean>

  • 相关阅读:
    VS2013 调试窗口一闪而过的解决方法
    什么是文件?
    局部变量和全局变量的区别
    一个简单java程序的要素
    运行一个简单的Java程序
    Javascript 构造函数原型继承机制
    函数式编程之一等公民的函数
    弹性布局flex-兼容问题
    TypeScript中的枚举类型
    依赖注入
  • 原文地址:https://www.cnblogs.com/JOEH60/p/5812743.html
Copyright © 2011-2022 走看看