-
大小: 7.48MB文件类型: .zip金币: 1下载: 0 次发布日期: 2023-11-09
- 语言: 其他
- 标签: spring-boot
资源简介
spring-boot-1.5.3.RELEASE
代码片段和文件信息
/*
* Copyright 2012-2015 the original author or authors.
*
* Licensed under the Apache License Version 2.0 (the “License“);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing software
* distributed under the License is distributed on an “AS IS“ BASIS
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.boot;
import java.util.List;
import java.util.Set;
/**
* Provides access to the arguments that were used to run a {@link SpringApplication}.
*
* @author Phillip Webb
* @since 1.3.0
*/
public interface ApplicationArguments {
/**
* Return the raw unprocessed arguments that were passed to the application.
* @return the arguments
*/
String[] getSourceArgs();
/**
* Return then names of all option arguments. For example if the arguments were
* “--foo=bar --debug“ would return the values {@code [“foo“ “debug“]}.
* @return the option names or an empty set
*/
Set getOptionNames();
/**
* Return whether the set of option arguments parsed from the arguments contains an
* option with the given name.
* @param name the name to check
* @return {@code true} if the arguments contain an option with the given name
*/
boolean containsOption(String name);
/**
* Return the collection of values associated with the arguments option having the
* given name.
*
* - if the option is present and has no argument (e.g.: “--foo“) return an empty
* collection ({@code []})
* - if the option is present and has a single value (e.g. “--foo=bar“) return a
* collection having one element ({@code [“bar“]})
* - if the option is present and has multiple values (e.g. “--foo=bar --foo=baz“)
* return a collection having elements for each value ({@code [“bar“ “baz“]})
* - if the option is not present return {@code null}
*
* @param name the name of the option
* @return a list of option values for the given name
*/
List getOptionValues(String name);
/**
* Return the collection of non-option arguments parsed.
* @return the non-option arguments or an empty list
*/
List getNonOptionArgs();
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\
文件 157 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\.editorconfig
目录 0 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\.github\
文件 727 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\.github\ISSUE_TEMPLATE.md
文件 172 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\.github\PULL_REQUEST_TEMPLATE.md
文件 369 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\.gitignore
目录 0 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\.mvn\
文件 8 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\.mvn\jvm.config
目录 0 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\.mvn\wrapper\
文件 49502 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\.mvn\wrapper\maven-wrapper.jar
文件 110 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\.mvn\wrapper\maven-wrapper.properties
文件 3661 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\.settings-template.xm
文件 357 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\.travis.yml
文件 2351 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\CODE_OF_CONDUCT.adoc
文件 9418 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\CONTRIBUTING.adoc
文件 11358 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\LICENSE.txt
文件 10363 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\README.adoc
目录 0 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\eclipse\
文件 31273 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\eclipse\eclipse-code-formatter.xm
文件 31060 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\eclipse\org.eclipse.jdt.core.prefs
文件 11556 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\eclipse\org.eclipse.jdt.ui.prefs
文件 19675 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\eclipse\spring-boot-project.setup
文件 7058 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\mvnw
文件 5006 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\mvnw.cmd
文件 11672 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\pom.xm
目录 0 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\spring-boot-actuator-docs\
文件 7226 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\spring-boot-actuator-docs\pom.xm
目录 0 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\spring-boot-actuator-docs\src\
目录 0 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\spring-boot-actuator-docs\src\main\
目录 0 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\spring-boot-actuator-docs\src\main\asciidoc\
文件 1166 2017-04-21 08:31 spring-boot-1.5.3.RELEASE\spring-boot-actuator-docs\src\main\asciidoc\autoconfig.adoc
............此处省略7493个文件信息
- 上一篇:摩托罗拉 M1225写频软件
- 下一篇:简体老宋体字库
相关资源
- spring-boot-中文参考手册
- spring-boot-docs-1.5.9.RELEASE
- spring-boot 停车场管理系统
- spring-boot使用quartz框架定时发送邮件
- spring-boot 各种demo(最新)
- spring-boot中文API文档
- spring-boot使用培训.pdf
- neo4j服务端开发,采用spring-boot开发,
- spring-boot-activiti集成
- Spring-Boot实战第4版随书源码
- Spring-boot web项目
- Spring-Boot Rest学习
- toutiao_第二次课代码 解决spring-boot兼容
- spring-boot-websocket-client代码
- great_project.zip
- 某学院spring-boot全套教程+项目源码
- spring-boot-mybatis+c3p0demo
- spring-boot思维导图完整知识点脑图教程
- spring-boot-1.5.4.RELEASE
- spring-boot-中文参考手册2.0
- spring-boot-中文参考指南
- spring-boot完整demo升级版
- spring-boot-starter-websocket.zip
- 参照阿里druid整理druid-spring-boot-start
- spring-boot-starter-rocketmq
- spring-boot-中文参考手册 高清完整版
- Spring-boot-admin微服务监控
- spring-boot 2.0.2 数据库配置定时任务
评论
共有 条评论