`
yjhexy
  • 浏览: 331113 次
  • 性别: Icon_minigender_1
  • 来自: 火星
社区版块
存档分类
最新评论

struts2 常量配置详解

阅读更多

1,struts.action.extension

作用:设置为htm的时候, 把url后缀为htm的映射成为action

源码:org.apache.struts2.dispatcher.mapper.DefaultActionMapper

 

@Inject(StrutsConstants.STRUTS_ACTION_EXTENSION)
    public void setExtensions(String extensions) {
        if (extensions != null && !"".equals(extensions)) {
            List<String> list = new ArrayList<String>();
            String[] tokens = extensions.split(",");
            for (String token : tokens) {
                list.add(token);
            }
            if (extensions.endsWith(",")) {
                list.add("");
            }
            this.extensions = Collections.unmodifiableList(list);
        } else {
            this.extensions = null;
        }
    }

 从源代码得知,这个可以用配置可以用“,”分割

 

2,struts.enable.DynamicMethodInvocation

作用:动态调用action方法,action!method

源码:org.apache.struts2.dispatcher.mapper.DefaultActionMapper

 

 

 

if (allowDynamicMethodCalls) {
            // handle "name!method" convention.
            String name = mapping.getName();
            int exclamation = name.lastIndexOf("!");
            if (exclamation != -1) {
                mapping.setName(name.substring(0, exclamation));
                mapping.setMethod(name.substring(exclamation + 1));
            }
        }
        return mapping;

 

 

3,struts.devMode

作用:设置为true的时候,开启dev模式,会输出很多有用的日志

 

 

4,struts.i18n.reload

作用:设置为true的时候,每次获取ResourceBundle的资源,都从文件加载,而不从内存中取

源码:com.opensymphony.xwork2.util.LocalizedTextUtil

 

private static void reloadBundles() {
        if (reloadBundles) {
            try {
                clearMap(ResourceBundle.class, null, "cacheList");

                // now, for the true and utter hack, if we're running in tomcat, clear
                // it's class loader resource cache as well.
                clearTomcatCache();
            }
            catch (Exception e) {
                LOG.error("Could not reload resource bundles", e);
            }
        }
    }

 

5,struts.i18n.encoding

作用:设置默认的 字符集编码(我习惯设置为UTF-8,像人人这种网站都是用UTF-8的)

源码:org.apache.struts2.dispatcher.Dispatcher(还有很多地方用到)

 

 /**
     * Prepare a request, including setting the encoding and locale.
     *
     * @param request The request
     * @param response The response
     */
    public void prepare(HttpServletRequest request, HttpServletResponse response) {
        String encoding = null;
        if (defaultEncoding != null) {
            encoding = defaultEncoding;
        }

        Locale locale = null;
        if (defaultLocale != null) {
            locale = LocalizedTextUtil.localeFromString(defaultLocale, request.getLocale());
        }

        if (encoding != null) {
            try {
                request.setCharacterEncoding(encoding);
            } catch (Exception e) {
                LOG.error("Error setting character encoding to '" + encoding + "' - ignoring.", e);
            }
        }

        if (locale != null) {
            response.setLocale(locale);
        }

        if (paramsWorkaroundEnabled) {
            request.getParameter("foo"); // simply read any parameter (existing or not) to "prime" the request
        }
    }
 

6,struts.configuration.xml.reload

作用:是否每次执行action的时候(com.opensymphony.xwork2.XWork.executeAction)reload struts相关的配置文件

源码:com.opensymphony.xwork2.config.ConfigurationManager

 

/**
     * Reloads the Configuration files if the configuration files indicate that they need to be reloaded.
     */
    public synchronized void conditionalReload() {
        if (FileManager.isReloadingConfigs()) {
            boolean reload;

            if (LOG.isDebugEnabled()) {
                LOG.debug("Checking ConfigurationProviders for reload.");
            }

            reload = false;

            List<ContainerProvider> providers = getContainerProviders();
            for (ContainerProvider provider : providers) {
                if (provider.needsReload()) {
                    if (LOG.isInfoEnabled()) {
                        LOG.info("Detected container provider "+provider+" needs to be reloaded.  Reloading all providers.");
                    }
                    reload = true;

                    //break;
                }
            } ..........
 

7,struts.action.excludePattern

作用:设置 不需要执行的 action的pattern(以JDK自带的正则表达式作匹配),以逗号分隔

源码:org.apache.struts2.dispatcher.ng.filter.StrutsPrepareFilter

 

	if ( excludedPatterns != null && prepare.isUrlExcluded(request, excludedPatterns)) {
				request.setAttribute(REQUEST_EXCLUDED_FROM_ACTION_MAPPING, new Object());
			} else {
				request = prepare.wrapRequest(request);
				prepare.findActionMapping(request, response);
			}
 

8,struts.tag.altSyntax

作用:具体没研究透 可以设置为true

源代码:org.apache.struts2.components.Component

 

/**
     * If altsyntax (%{...}) is applied, simply strip the "%{" and "}" off.
     * @param stack the ValueStack where the context value is searched for. 
     * @param expr the expression (must be not null)
     * @return the stripped expression if altSyntax is enabled. Otherwise
     * the parameter expression is returned as is.
     */
	public static String stripExpressionIfAltSyntax(ValueStack stack, String expr) {
		if (altSyntax(stack)) {
            // does the expression start with %{ and end with }? if so, just cut it off!
            if (expr.startsWith("%{") && expr.endsWith("}")) {
                return expr.substring(2, expr.length() - 1);
            }
        }
		return expr;
	}
 

9,struts.url.http.port  

作用:struts 生成URL的时候需要带上的端口号,默认80是不需要带的

源码:

 

        int httpPort = Integer.parseInt(cont.getInstance(String.class, StrutsConstants.STRUTS_URL_HTTP_PORT));
        int httpsPort = Integer.parseInt(cont.getInstance(String.class, StrutsConstants.STRUTS_URL_HTTPS_PORT));

        // only append scheme if it is different to the current scheme *OR*
        // if we explicity want it to be appended by having forceAddSchemeHostAndPort = true
        if (forceAddSchemeHostAndPort) {
            String reqScheme = request.getScheme();
            changedScheme = true;
            link.append(scheme != null ? scheme : reqScheme);
            link.append("://");
            link.append(request.getServerName());

            if (scheme != null) {
                // If switching schemes, use the configured port for the particular scheme.
                if (!scheme.equals(reqScheme)) {
                    if ((scheme.equals("http") && (httpPort != DEFAULT_HTTP_PORT)) || (scheme.equals("https") && httpsPort != DEFAULT_HTTPS_PORT)) {
                        link.append(":");
                        link.append(scheme.equals("http") ? httpPort : httpsPort);
                    }
 

10,struts.url.https.port 同上,差不多。

 

11,struts.url.includeParams

作用:不够详细的介绍

none: 在ServletUrlRenderer渲染URL的时候不会把参数带进去 

get:会把get参数带进去

all:会把 get参数和 Component的参数都带进去

 

12,struts.urlRenderer

作用:修改 UrlRenderer 的实现类,默认为 ServletUrlRenderer

 

13,struts.objectFactory

作用:The com.opensymphony.xwork2.ObjectFactory 的实现类 默认是 org.apache.struts2.impl.StrutsObjectFactory

 

14,struts.objectTypeDeterminer

作用:使用 ognl 获取数据时候 自动判断 数据类型的实现类(我这里没仔细看,分析的不够具体)

 

15,struts.continuations.package

未发现有使用的地方,貌似是个无用的配置 

 

16,struts.configuration

这个配置经测试,貌似无效 

 

17,struts.locale

设置 struts 的 本地默认国家和语言。

 

 

18,struts.dispatcher.parametersWorkaround

什么跟WebLogic有关的设置,不懂,不解释。

 

 

19,struts.freemarker.manager.classname

作用:FreemarkerManager 的实现类 默认org.apache.struts2.views.freemarker.FreemarkerManager

 

20,struts.freemarker.templatesCache

不推荐使用这个,改为使用 struts.freemarker.mru.max.strong.size >0                 struts.freemarker.templatesCache.updateDelay>0

 

21,struts.freemarker.templatesCache.updateDelay

作用:设置正整数和0 几秒钟更新一次freemarket模板

 

22,struts.freemarker.mru.max.strong.size

作用:设置正整数和0 引用英文原描述:the maximum number of strongly referenced templates

 

23,struts.freemarker.beanwrapperCache

作用:设置true 表示使用cache ?????

 

24,struts.velocity.manager.classname

作用:设置VelocityManager 的实现类,默认 org.apache.struts2.views.velocity.VelocityManager

 

25,struts.velocity.configfile

作用:设置哪里读取velocity 的velocity.properties

 

26,struts.velocity.toolboxlocation

作用:设置velocity的toolbox的位置

 

27,struts.velocity.contexts

设置velocity context 的类,以逗号分隔

 

28,struts.ui.templateDir

设置struts 的ui template 的位置

 

29,待补充中

 

/** The default UI template theme */

    public static final String STRUTS_UI_THEME = "struts.ui.theme";

 

    /** The maximize size of a multipart request (file upload) */

    public static final String STRUTS_MULTIPART_MAXSIZE = "struts.multipart.maxSize";

 

    /** The directory to use for storing uploaded files */

    public static final String STRUTS_MULTIPART_SAVEDIR = "struts.multipart.saveDir";

 

    /**

     * The name of the bean that will handle multipart requests

     */

    public static final String STRUTS_MULTIPART_HANDLER = "struts.multipart.handler";

 

    /**

     * The org.apache.struts2.dispatcher.multipart.MultiPartRequest parser implementation

     * for a multipart request (file upload)

     */

    public static final String STRUTS_MULTIPART_PARSER = "struts.multipart.parser";

 

    /** How Spring should autowire.  Valid values are 'name', 'type', 'auto', and 'constructor' */

    public static final String STRUTS_OBJECTFACTORY_SPRING_AUTOWIRE = "struts.objectFactory.spring.autoWire";

 

    /** Whether the autowire strategy chosen by STRUTS_OBJECTFACTORY_SPRING_AUTOWIRE is always respected.  Defaults

     * to false, which is the legacy behavior that tries to determine the best strategy for the situation.

     * @since 2.1.3

     */

    public static final String STRUTS_OBJECTFACTORY_SPRING_AUTOWIRE_ALWAYS_RESPECT = "struts.objectFactory.spring.autoWire.alwaysRespect";

 

    /** Whether Spring should use its class cache or not */

    public static final String STRUTS_OBJECTFACTORY_SPRING_USE_CLASS_CACHE = "struts.objectFactory.spring.useClassCache";

 

    /** Whether or not XSLT templates should not be cached */

    public static final String STRUTS_XSLT_NOCACHE = "struts.xslt.nocache";

 

    /** Location of additional configuration properties files to load */

    public static final String STRUTS_CUSTOM_PROPERTIES = "struts.custom.properties";

 

    /** Location of additional localization properties files to load */

    public static final String STRUTS_CUSTOM_I18N_RESOURCES = "struts.custom.i18n.resources";

 

    /** The org.apache.struts2.dispatcher.mapper.ActionMapper implementation class */

    public static final String STRUTS_MAPPER_CLASS = "struts.mapper.class";

 

    /**

     * A prefix based action mapper that is capable of delegating to other

     * {@link org.apache.struts2.dispatcher.mapper.ActionMapper}s based on the request's prefix

     * You can specify different prefixes that will be handled by different mappers

     */

    public static final String PREFIX_BASED_MAPPER_CONFIGURATION = "struts.mapper.prefixMapping";

 

    /** Whether the Struts filter should serve static content or not */

    public static final String STRUTS_SERVE_STATIC_CONTENT = "struts.serve.static";

 

    /** If static content served by the Struts filter should set browser caching header properties or not */

    public static final String STRUTS_SERVE_STATIC_BROWSER_CACHE = "struts.serve.static.browserCache";

 

    /** Allows one to disable dynamic method invocation from the URL */

    public static final String STRUTS_ENABLE_DYNAMIC_METHOD_INVOCATION = "struts.enable.DynamicMethodInvocation";

 

    /** Whether slashes in action names are allowed or not */

    public static final String STRUTS_ENABLE_SLASHES_IN_ACTION_NAMES = "struts.enable.SlashesInActionNames";

 

    /** Prefix used by {@link CompositeActionMapper} to identify its containing {@link org.apache.struts2.dispatcher.mapper.ActionMapper} class. */

    public static final String STRUTS_MAPPER_COMPOSITE = "struts.mapper.composite";

 

    public static final String STRUTS_ACTIONPROXYFACTORY = "struts.actionProxyFactory";

 

    public static final String STRUTS_FREEMARKER_WRAPPER_ALT_MAP = "struts.freemarker.wrapper.altMap";

 

    /** The name of the xwork converter implementation */

    public static final String STRUTS_XWORKCONVERTER = "struts.xworkConverter";

 

    public static final String STRUTS_ALWAYS_SELECT_FULL_NAMESPACE = "struts.mapper.alwaysSelectFullNamespace";

 

    /** XWork default text provider */

    public static final String STRUTS_XWORKTEXTPROVIDER = "struts.xworkTextProvider";

 

    /** The name of the parameter to create when mapping an id (used by some action mappers) */

public static final String STRUTS_ID_PARAMETER_NAME = "struts.mapper.idParameterName";

/** The name of the parameter to determine whether static method access will be allowed in OGNL expressions or not */

public static final String STRUTS_ALLOW_STATIC_METHOD_ACCESS = "struts.ognl.allowStaticMethodAccess";

 

/** The com.opensymphony.xwork2.validator.ActionValidatorManager implementation class */

    public static final String STRUTS_ACTIONVALIDATORMANAGER = "struts.actionValidatorManager";

 

    /** The {@link com.opensymphony.xwork2.util.ValueStackFactory} implementation class */

    public static final String STRUTS_VALUESTACKFACTORY = "struts.valueStackFactory";

 

    /** The {@link com.opensymphony.xwork2.util.reflection.ReflectionProvider} implementation class */

    public static final String STRUTS_REFLECTIONPROVIDER = "struts.reflectionProvider";

 

    /** The {@link com.opensymphony.xwork2.util.reflection.ReflectionContextFactory} implementation class */

    public static final String STRUTS_REFLECTIONCONTEXTFACTORY = "struts.reflectionContextFactory";

 

    /** The {@link com.opensymphony.xwork2.util.PatternMatcher} implementation class */

    public static final String STRUTS_PATTERNMATCHER = "struts.patternMatcher";

 

    /** The {@link org.apache.struts2.dispatcher.StaticContentLoader} implementation class */

    public static final String STRUTS_STATIC_CONTENT_LOADER = "struts.staticContentLoader";

 

    /** The {@link com.opensymphony.xwork2.UnknownHandlerManager} implementation class */

    public static final String STRUTS_UNKNOWN_HANDLER_MANAGER = "struts.unknownHandlerManager";

 

    /** Throw RuntimeException when a property is not found, or the evaluation of the espression fails*/

    public static final String STRUTS_EL_THROW_EXCEPTION = "struts.el.throwExceptionOnFailure";

 

    /** Logs properties that are not found (very verbose) **/

    public static final String STRUTS_LOG_MISSING_PROPERTIES = "struts.ognl.logMissingProperties";

 

    /** Enables caching of parsed OGNL expressions **/

    public static final String STRUTS_ENABLE_OGNL_EXPRESSION_CACHE = "struts.ognl.enableExpressionCache";

 

 

 

 

 

 

 

 

 

分享到:
评论
1 楼 huyuancai1010 2014-01-14  
.

相关推荐

    Python基于yolo的健身姿势检测与姿态矫正建议系统源代码+使用说明

    Python基于yolo的健身姿势检测与姿态矫正建议系统源代码+使用说明 model:保存模型参数 config.yaml:配置文件 resource:输入文件夹,具有固定的目录结构(动作-视角-标准/错误点) output:输出文件夹,保持和resource相同的目录结构 main.py:实现resource2output方法,将resource中的资源全部提取数据并输出(csv格式)到output的相应位置 tasks:任务文件夹,对于不同的健身任务,分别实现标准性判别方法 keypoint.py:是对yolo模型返回的节点进行对象封装,其中的Keypoint对象封装了返回结果(是一个数组)中各关节位置对应数组中的位置,这样就不需要通过下标直接获取节点,而是通过例如get("l_elbow")的实例方法获取节点 pull_up.py:为具体健身任务实现标准性判别方法,这里是对引体向上的处理 task_processor.py由于main.py是在对resource文件夹中所有资源进行处理,不同的方法将对应不同的处理函数,task_processor.py中实现了TaskProces

    使用谷歌地球引擎(GEE)和 Python 在孟加拉国西北部绘制基于机器学习算法的作物类型图.ipynb

    精确的作物类型图对于监测种植模式、可持续利用现有自然资源和估算收成至关重要。人工数字化和标注--绘制作物类型图的常用方法--大多费时、费钱,甚至容易出现人为错误。近来,机器学习算法已发展成为利用卫星图像对作物品种进行分类的经济有效的替代方法。为应对最新进展,本研究将采用机器学习算法,利用哨兵-2 图像对孟加拉国西北部(拉杰沙希县戈达加里乡)的 6 种作物类型进行分类。将研究四种机器学习算法(随机森林、人工神经网络、KNN 和支持向量机),以准确绘制作物类型图。

    【光伏预测】基于蛇群优化算法SO优化高斯过程回归GPR实现光伏多输入单输出预测附Matlab代码.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手

    【光伏预测】基于鹈鹕优化算法POA优化高斯过程回归GPR实现光伏多输入单输出预测附Matlab代码.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手

    深度学习图形识别点位知识

    资源说明: 为提高弱纹理图像关键目标点的检测识别能力,提出基干深度学习的弱纹理图像关键目标点识别定位方法;构建低光照强度弱纹理图像关键目标点的拓扑特征分布模型,采用透射率作为检测系数,结合亮通道的先验知识,建立像素大数据分布集................................ pdf文件。请使用支持pdf阅读的工具打开.

    【创新未发表】Matlab实现引力搜索优化算法GSA-GRU实现风电数据预测算法研究.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手

    【元胞自动机】基于matlab元胞自动机交通流仿真带有弯道的单车道(含时空图)【含Matlab源码 9047期】.mp4

    Matlab领域上传的视频均有对应的完整代码,皆可运行,亲测可用,适合小白; 1、代码压缩包内容 主函数:main.m; 调用函数:其他m文件;无需运行 运行结果效果图; 2、代码运行版本 Matlab 2019b;若运行有误,根据提示修改;若不会,私信博主; 3、运行操作步骤 步骤一:将所有文件放到Matlab的当前文件夹中; 步骤二:双击打开main.m文件; 步骤三:点击运行,等程序运行完得到结果; 4、仿真咨询 如需其他服务,可私信博主; 4.1 博客或资源的完整代码提供 4.2 期刊或参考文献复现 4.3 Matlab程序定制 4.4 科研合作

    编译原理实战-基于c语言实现表达式计算器+项目源码+文档说明

    <项目介绍> 编译原理实战之表达式计算器 -------- 不懂运行,下载完可以私聊问,可远程教学 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。 --------

    毕业设计&amp;课设-用于 Spring Boot 的开源渗透框架及高危漏洞利用工具.zip

    毕业设计&课设-用于 Spring Boot 的开源渗透框架及高危漏洞利用工具 1、该资源内项目代码都经过严格测试运行成功才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。

    【创新未发表】Matlab实现人工蜂鸟优化算法AHA-GRU实现风电数据预测算法研究.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手

    基于二阶锥松弛的分布式电源接入配电网潮流求解方法及算例

    Matlab代码

    chart.js 4.4.6版

    基于jquery的图表框架

    基于matlab GUI界面的疲劳检测系统源码+文档说明(毕业设计和课程设计都适用)

    基于matlab GUI界面的疲劳检测系统源码+文档说明(毕业设计和课程设计都适用),含有代码注释,新手也可看懂,个人手打98分项目,导师非常认可的高分项目,毕业设计、期末大作业和课程设计高分必看,下载下来,简单部署,就可以使用。该项目可以直接作为毕设、期末大作业使用,代码都在里面,系统功能完善、界面美观、操作简单、功能齐全、管理便捷,具有很高的实际应用价值,项目都经过严格调试,确保可以运行! 基于matlab GUI界面的疲劳检测系统源码+文档说明(毕业设计和课程设计都适用)基于matlab GUI界面的疲劳检测系统源码+文档说明(毕业设计和课程设计都适用)基于matlab GUI界面的疲劳检测系统源码+文档说明(毕业设计和课程设计都适用)基于matlab GUI界面的疲劳检测系统源码+文档说明(毕业设计和课程设计都适用)基于matlab GUI界面的疲劳检测系统源码+文档说明(毕业设计和课程设计都适用)基于matlab GUI界面的疲劳检测系统源码+文档说明(毕业设计和课程设计都适用)基于matlab GUI界面的疲劳检测系统源码+文档说明(毕业设计和课程设计都适用)基于matl

    计算机图形学之动画和模拟算法:Procedural Animation:碰撞检测与响应.docx

    计算机图形学之动画和模拟算法:Procedural Animation:碰撞检测与响应.docx

    斯坦福最新2017年cs231n课程ppt-16

    机器学习 Adversarial Examples and Adversarial Training Overview • What are adversarial examples? • Why do they happen? • How can they be used to compromise machine learning systems? • What are the defenses? • How to use adversarial examples to improve machine learning, even when there is no adversary

    Matlab实现牛顿拉夫逊优化算法NRBO-Kmean-Transformer-BiLSTM负荷预测算法研究.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手

    【创新未发表】Matlab实现三角测量拓扑聚合优化器TTAO-GRU实现风电数据预测算法研究.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手

    【光伏预测】基于雾凇优化算法RIME优化高斯过程回归GPR实现光伏多输入单输出预测附Matlab代码.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手

    【发文无忧】基于凌日优化算法TSOA-Kmean-Transformer-GRU实现数据回归预测算法研究Matlab代码.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手

    网络安全解读网络安全政策.pdf

    网络安全解读网络安全政策

Global site tag (gtag.js) - Google Analytics