我个人将互联网这十年的发展定义为技术的第二次革命,从单机服务C/S再到SOA分布式,以至于现在的PAAS,不断的向更高级,更加智能进行演化,基础的平台,组件,中间件,也趋于云化,整个互联网的技术环境也趋向于从研发技术向使用技术的阶段,开源与共享让每个team,可以在最短的时间内具有即使通讯能力,推送能力,短信能力,人脸识别能力,自然语音识别能力。那么对于springboot,将更加简化之前的spring mvc+tomcat+xml等组合复杂度,只需引入starter即可完成web服务的搭建启用,对于restful更加的灵活快速。
那么对于程序员,最好能够使用gradle来进行项目与jar包的管理,无需一堆xml文件,gradle基于groovy语言的。以下为springboot需要的gradle的配置。
group'com.terry'
version'1.0-SNAPSHOT'
applyplugin:'java'
applyplugin:'spring-boot'
sourceCompatibility =1.5
//buildscript 是项目本身所需要的资源
buildscript {
ext {
springBootVersion ='1.4.0.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
repositories {
repositories { maven { url'http://repo.qtonecloud.cn/content/groups/public/'} }
mavenLocal()
mavenCentral()
}
/**
* The imported bom will control the version of the dependency.
It will also control the version of its transitive dependencies if they’re listed in the bom.
*/
//dependencyManagement {
// imports {
// mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Camden.SR2'
// }
//}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:1.4.2.RELEASE")
compile'org.springframework.cloud:spring-cloud-starter-config:1.2.1.RELEASE'
compile'org.aspectj:aspectjweaver:1.8.8'
compile'com.google.guava:guava:19.0'
testCompilegroup:'junit',name:'junit',version:'4.11'
}
task"createJavaProject"<< {
sourceSets*.java.srcDirs*.each { it.mkdirs() }
sourceSets*.resources.srcDirs*.each { it.mkdirs() }
/** 可选生成子文件夹 */
// file("src/main/filters").mkdirs()
// file("src/main/assembly").mkdirs()
// file("src/main/config").mkdirs()
// file("src/main/scripts").mkdirs()
/** 填充文件,便于git提交 */
file("src/main/java/cn/terry").mkdirs()
file("src/main/java/cn/terry/package-info.java").createNewFile()
file("src/main/resources").mkdirs()
file("src/main/resources/spring.xml").createNewFile()
file("src/test/java/cn/terry").mkdirs()
file("src/test/java/cn/terry/package-info.java").createNewFile()
file("src/test/resources/spring.xml").createNewFile()
}
创建服务启动主程序
packagecn.terry;
importorg.springframework.boot.SpringApplication;
importorg.springframework.boot.autoconfigure.SpringBootApplication;
importorg.springframework.boot.context.embedded.ConfigurableEmbeddedServletContainer;
importorg.springframework.boot.context.embedded.EmbeddedServletContainerCustomizer;
importorg.springframework.boot.web.support.SpringBootServletInitializer;
/**
* Created by zhaoguofeng on 2016/11/22.
*/
@SpringBootApplication
public classStartApplication extends SpringBootServletInitializer implements EmbeddedServletContainerCustomizer {
public static voidmain(String[] args) {
SpringApplication.run(StartApplication.class,args);
}
public void customize(ConfigurableEmbeddedServletContainer container) {
container.setPort(8082);
}
}
端口当然可以通过实现EmbeddedServletContainerCustomizer.customize方法,去进行设置。
创建一个controller
packagecn.terry.controller;
importcom.google.common.collect.Lists;
importorg.springframework.context.annotation.ComponentScan;
importorg.springframework.web.bind.annotation.RequestMapping;
importorg.springframework.web.bind.annotation.RestController;
importjava.util.List;
/**
* Created by zhaoguofeng on 2016/11/22.
*/
@RestController
@ComponentScan
public classLoginController {
@RequestMapping("/getInfo")
publicListgetInfo() {
List list = Lists.newArrayList();
list.add("hello");
list.add("world");
returnlist;
}
}
执行main方法,我们可以看到spring boot就很轻松的启动起来了,那么我们运行http://localhost:8082/getInfo 即可看到["hello","world"]
网友评论