组织ID: |
org.springframework.boot |
项目ID: |
spring-boot |
版本: |
1.1.8.RELEASE |
最后修改时间: |
2018-08-06 21:33:03 |
包类型: |
jar |
标题: |
Spring Boot |
描述: |
Spring Boot |
大小: |
326.63KB |
|
Maven引入代码: |
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
<version>1.1.8.RELEASE</version>
</dependency>
|
Gradle引入代码: |
org.springframework.boot:spring-boot:1.1.8.RELEASE
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-parent</artifactId>
<version>1.1.8.RELEASE</version>
<relativePath>../spring-boot-parent</relativePath>
</parent>
<artifactId>spring-boot</artifactId>
<name>Spring Boot</name>
<description>Spring Boot</description>
<url>http://projects.spring.io/spring-boot/</url>
<organization>
<name>Pivotal Software, Inc.</name>
<url>http://www.spring.io</url>
</organization>
<properties>
<main.basedir>${basedir}/..</main.basedir>
</properties>
<dependencies>
<!-- Compile -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<!-- Optional -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-xml</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<optional>true</optional>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpasyncclient</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-logging-juli</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/spring.factories
favicon.ico
org.springframework.boot.BeanDefinitionLoader$ClassExcludeFilter.class
org.springframework.boot.BeanDefinitionLoader.class
org.springframework.boot.StartupInfoLogger$1.class
org.springframework.boot.Banner.class
org.springframework.boot.SpringApplicationRunListener.class
org.springframework.boot.StartupInfoLogger$3.class
org.springframework.boot.ApplicationPid.class
org.springframework.boot.StartupInfoLogger$5.class
org.springframework.boot.ansi.AnsiOutput$Enabled.class
org.springframework.boot.ansi.AnsiElement$DefaultAnsiElement.class
org.springframework.boot.ansi.AnsiOutput.class
org.springframework.boot.ansi.AnsiElement.class
org.springframework.boot.bind.PropertiesConfigurationFactory.class
org.springframework.boot.bind.RelaxedDataBinder$BeanPath.class
org.springframework.boot.bind.YamlConfigurationFactory.class
org.springframework.boot.bind.YamlJavaBeanPropertyConstructor.class
org.springframework.boot.bind.RelaxedNames$Manipulation$6.class
org.springframework.boot.bind.RelaxedNames$Manipulation$2.class
org.springframework.boot.bind.PropertySourcesPropertyValues.class
org.springframework.boot.bind.RelaxedDataBinder$BeanPath$PathNode.class
org.springframework.boot.bind.RelaxedNames$Manipulation$4.class
org.springframework.boot.bind.RelaxedConversionService$1.class
org.springframework.boot.bind.RelaxedConversionService$StringToEnumIgnoringCaseConverterFactory.class
org.springframework.boot.bind.RelaxedConversionService.class
org.springframework.boot.bind.InetAddressEditor.class
org.springframework.boot.bind.YamlJavaBeanPropertyConstructor$CustomPropertyConstructMapping.class
org.springframework.boot.bind.RelaxedNames.class
org.springframework.boot.bind.RelaxedDataBinder.class
org.springframework.boot.bind.RelaxedNames$Variation$2.class
org.springframework.boot.bind.RelaxedNames$Manipulation$5.class
org.springframework.boot.bind.RelaxedNames$Variation$3.class
org.springframework.boot.bind.RelaxedNames$Manipulation.class
org.springframework.boot.bind.RelaxedNames$Variation$1.class
org.springframework.boot.bind.RelaxedDataBinder$BeanPath$PropertyNode.class
org.springframework.boot.bind.RelaxedConversionService$StringToEnumIgnoringCaseConverterFactory$StringToEnum.class
org.springframework.boot.bind.RelaxedPropertyResolver.class
org.springframework.boot.bind.StringToCharArrayConverter.class
org.springframework.boot.bind.RelaxedDataBinder$MapHolder.class
org.springframework.boot.bind.RelaxedNames$Manipulation$3.class
org.springframework.boot.bind.RelaxedNames$1.class
org.springframework.boot.bind.RelaxedNames$Variation.class
org.springframework.boot.bind.PropertySourceUtils.class
org.springframework.boot.bind.RelaxedNames$Manipulation$1.class
org.springframework.boot.bind.RelaxedDataBinder$BeanPath$ArrayIndexNode.class
org.springframework.boot.bind.RelaxedDataBinder$BeanPath$MapIndexNode.class
org.springframework.boot.StartupInfoLogger$4.class
org.springframework.boot.context.FileEncodingApplicationListener.class
org.springframework.boot.context.web.ErrorPageFilter$1.class
org.springframework.boot.context.web.NonEmbeddedServletContainerFactory.class
org.springframework.boot.context.web.ServletContextApplicationContextInitializer.class
org.springframework.boot.context.web.ErrorPageFilter$ErrorWrapperResponse.class
org.springframework.boot.context.web.SpringBootServletInitializer$1.class
org.springframework.boot.context.web.ErrorPageFilter.class
org.springframework.boot.context.web.SpringBootServletInitializer.class
org.springframework.boot.context.ContextIdApplicationContextInitializer.class
org.springframework.boot.context.embedded.ServletContextInitializerBeans$2.class
org.springframework.boot.context.embedded.ServletListenerRegistrationBean.class
org.springframework.boot.context.embedded.ServletContextInitializerBeans$1.class
org.springframework.boot.context.embedded.FilterRegistrationBean.class
org.springframework.boot.context.embedded.EmbeddedServletContainerCustomizer.class
org.springframework.boot.context.embedded.ServletRegistrationBean.class
org.springframework.boot.context.embedded.MultipartConfigFactory.class
org.springframework.boot.context.embedded.EmbeddedWebApplicationContext$1.class
org.springframework.boot.context.embedded.ServletContextInitializer.class
org.springframework.boot.context.embedded.EmbeddedServletContainerCustomizerBeanPostProcessor.class
org.springframework.boot.context.embedded.EmbeddedServletContainerFactory.class
org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainer.class
org.springframework.boot.context.embedded.jetty.JettyEmbeddedWebAppContext.class
org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainerFactory.class
org.springframework.boot.context.embedded.jetty.JettyEmbeddedWebAppContext$1.class
org.springframework.boot.context.embedded.jetty.ServletContextInitializerConfiguration.class
org.springframework.boot.context.embedded.jetty.JettyEmbeddedWebAppContext$JettyEmbeddedServletHandler.class
org.springframework.boot.context.embedded.jetty.ServletContextInitializerConfiguration$1.class
org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainerFactory$1.class
org.springframework.boot.context.embedded.jetty.ServletContextInitializerConfiguration$InitializerListener.class
org.springframework.boot.context.embedded.jetty.JettyEmbeddedServletContainerFactory$2.class
org.springframework.boot.context.embedded.jetty.JettyServerCustomizer.class
org.springframework.boot.context.embedded.XmlEmbeddedWebApplicationContext.class
org.springframework.boot.context.embedded.WebApplicationContextServletContextAwareProcessor.class
org.springframework.boot.context.embedded.Ssl$ClientAuth.class
org.springframework.boot.context.embedded.RegistrationBean.class
org.springframework.boot.context.embedded.ServletContextInitializerBeans$ServletRegistrationBeanAdapter.class
org.springframework.boot.context.embedded.ConfigurableEmbeddedServletContainer.class
org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainerFactory$TomcatErrorPage.class
org.springframework.boot.context.embedded.tomcat.TomcatResources$Tomcat7Resources.class
org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainerFactory$StoreMergedWebXmlListener.class
org.springframework.boot.context.embedded.tomcat.SkipPatternJarScanner$SkipPattern.class
org.springframework.boot.context.embedded.tomcat.ServletContextInitializerLifecycleListener.class
org/springframework/boot/context/embedded/tomcat/empty-web.xml
org.springframework.boot.context.embedded.tomcat.TomcatResources.class
org.springframework.boot.context.embedded.tomcat.TomcatContextCustomizer.class
org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainerFactory$1.class
org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedWebappClassLoader.class
org.springframework.boot.context.embedded.tomcat.TomcatResources$Tomcat8Resources.class
org.springframework.boot.context.embedded.tomcat.SkipPatternJarScanner.class
org.springframework.boot.context.embedded.tomcat.TomcatConnectorCustomizer.class
org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer$1.class
org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer.class
org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainerFactory.class
org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedContext.class
org.springframework.boot.context.embedded.EmbeddedWebApplicationContext.class
org.springframework.boot.context.embedded.ServletContextInitializerBeans$ServletListenerRegistrationBeanAdapter.class
org.springframework.boot.context.embedded.ServletContextInitializerBeans.class
org.springframework.boot.context.embedded.EmbeddedServletContainerException.class
org.springframework.boot.context.embedded.ServletContextInitializerBeans$RegistrationBeanAdapter.class
org.springframework.boot.context.embedded.Ssl.class
org.springframework.boot.context.embedded.ErrorPage.class
org.springframework.boot.context.embedded.MimeMappings$Mapping.class
org.springframework.boot.context.embedded.EmbeddedServletContainer.class
org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext.class
org.springframework.boot.context.embedded.MimeMappings.class
org.springframework.boot.context.embedded.AbstractEmbeddedServletContainerFactory.class
org.springframework.boot.context.embedded.ServletContextInitializerBeans$FilterRegistrationBeanAdapter.class
org.springframework.boot.context.embedded.EmbeddedServletContainerInitializedEvent.class
org.springframework.boot.context.embedded.AbstractConfigurableEmbeddedServletContainer.class
org.springframework.boot.context.event.EventPublishingRunListener.class
org.springframework.boot.context.event.SpringApplicationEvent.class
org.springframework.boot.context.event.ApplicationPreparedEvent.class
org.springframework.boot.context.event.ApplicationFailedEvent.class
org.springframework.boot.context.event.ApplicationEnvironmentPreparedEvent.class
org.springframework.boot.context.event.ApplicationStartedEvent.class
org.springframework.boot.context.config.ConfigFileApplicationListener.class
org.springframework.boot.context.config.ConfigFileApplicationListener$ConfigurationPropertySources.class
org.springframework.boot.context.config.ConfigFileApplicationListener$Loader.class
org.springframework.boot.context.config.ConfigFileApplicationListener$PropertySourceOrderingPostProcessor.class
org.springframework.boot.context.config.DelegatingApplicationListener.class
org.springframework.boot.context.config.RandomValuePropertySource.class
org.springframework.boot.context.config.DelegatingApplicationContextInitializer.class
org.springframework.boot.context.properties.ConfigurationBeanFactoryMetaData$1.class
org.springframework.boot.context.properties.EnableConfigurationPropertiesImportSelector$ConfigurationPropertiesBeanRegistrar.class
org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor$ChainingValidator.class
org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessorRegistrar.class
org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor$1.class
org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor.class
org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor$FlatPropertySources.class
org.springframework.boot.context.properties.ConfigurationProperties.class
org.springframework.boot.context.properties.ConfigurationBeanFactoryMetaData.class
org.springframework.boot.context.properties.EnableConfigurationProperties.class
org.springframework.boot.context.properties.ConfigurationBeanFactoryMetaData$MetaData.class
org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor$Jsr303ValidatorFactory.class
org.springframework.boot.context.properties.ConfigurationPropertiesHolder.class
org.springframework.boot.context.properties.EnableConfigurationPropertiesImportSelector.class
org.springframework.boot.cloudfoundry.VcapApplicationListener.class
org.springframework.boot.builder.SpringApplicationBuilder.class
org.springframework.boot.builder.ParentContextApplicationContextInitializer.class
org.springframework.boot.builder.ParentContextApplicationContextInitializer$EventPublisher.class
org.springframework.boot.builder.ParentContextCloserApplicationListener$ContextCloserListener.class
org.springframework.boot.builder.ParentContextCloserApplicationListener.class
org.springframework.boot.builder.ParentContextApplicationContextInitializer$ParentContextAvailableEvent.class
org.springframework.boot.logging.logback.LevelRemappingAppender$RemappedLoggingEvent.class
org.springframework.boot.logging.logback.LevelRemappingAppender.class
org/springframework/boot/logging/logback/logback.xml
org/springframework/boot/logging/logback/basic.xml
org.springframework.boot.logging.logback.LevelRemappingAppender$AppendableLogger.class
org.springframework.boot.logging.logback.ColorConverter.class
org/springframework/boot/logging/logback/basic-logback.xml
org.springframework.boot.logging.logback.WhitespaceThrowableProxyConverter.class
org.springframework.boot.logging.logback.LogbackLoggingSystem.class
org/springframework/boot/logging/logback/base.xml
org.springframework.boot.logging.LoggingSystem.class
org.springframework.boot.logging.AbstractLoggingSystem.class
org.springframework.boot.logging.log4j.Log4JLoggingSystem.class
org/springframework/boot/logging/log4j/log4j.properties
org/springframework/boot/logging/log4j/basic-log4j.properties
org.springframework.boot.logging.LoggingApplicationListener.class
org/springframework/boot/logging/java/basic-logging.properties
org/springframework/boot/logging/java/logging.properties
org.springframework.boot.logging.java.JavaLoggingSystem.class
org.springframework.boot.logging.java.SimpleFormatter.class
org.springframework.boot.logging.LogLevel.class
org.springframework.boot.logging.ClasspathLoggingApplicationListener.class
org.springframework.boot.yaml.ArrayDocumentMatcher.class
org.springframework.boot.yaml.YamlProcessor.class
org.springframework.boot.yaml.YamlProcessor$ResolutionMethod.class
org.springframework.boot.yaml.YamlMapFactoryBean.class
org.springframework.boot.yaml.YamlMapFactoryBean$1.class
org.springframework.boot.yaml.SpringProfileDocumentMatcher.class
org.springframework.boot.yaml.YamlPropertiesFactoryBean$1.class
org.springframework.boot.yaml.YamlProcessor$DocumentMatcher.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
|