All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gitee.qdbp.staticize.common.StackWrapper Maven / Gradle / Ivy

There is a newer version: 3.5.18
Show newest version
package com.gitee.qdbp.staticize.common;

import java.util.Map;

/**
 * 值栈容器, 用于处理值栈本身的操作
* 该类可以在业务侧自定义, 必须有Map入参的构造函数
* 在taglib中, 通过@StackWrapper=com.gitee.qdbp.able.model.reusable.StackWrapper自定义
* 该类的所有方法可以在el表达式中以@形式调用, 如@contains('user.account')
* 在BaseTag.refreshStack方法将stack用StackWrapper封装保存到stack中
* * @author zhaohuihua * @version 20210422 * @deprecated moved to com.gitee.qdbp.able.model.reusable.StackWrapper */ @Deprecated public class StackWrapper extends com.gitee.qdbp.able.model.reusable.StackWrapper { public StackWrapper(Map map) { super(map); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy