4。25 为了在每个类都能用到log

4。25 为了在每个类都能用到log
为了在每个dao和service 类都能用到log,在basedaoimpl和baseserviceimpl都实现方法:
    public Log getLogger() {
        if (log == null) {
            log = LogFactory.getLog(this.getClass());
        }
        return log;
    }

在类中就可以调用log
this.getLogger

2、<input type="text" name="password">
与form的属性对应,password是大小分别。

你可能感兴趣的:(4。25 为了在每个类都能用到log)