创建一个springboot工程最小化代码

简介: 创建一个springboot工程最小化代码(json-lib的引入gradle方式)

compile 'org.springframework.boot:spring-boot-starter-web:1.4.0.RELEASE'

compile 'net.sf.json-lib:json-lib:2.4:jdk15'

compile 'org.apache.httpcomponents:httpcore:4.4.10'
compile 'org.apache.httpcomponents:httpmime:4.5.6'
compile 'org.apache.httpcomponents:httpclient:4.5.6'

<groupId>net.sf.json-lib</groupId>    
<artifactId>json-lib</artifactId>    
<version>2.4</version>    
<classifier>jdk15</classifier>    

最小代码的springboot工程:

settings.gradle:

/*

  • This settings file was generated by the Gradle 'init' task.

*

  • The settings file is used to specify which projects to include in your build.
  • In a single project build this file can be empty or even removed.

*

*/

/*
// To declare projects as part of a multi-project build use the 'include' method
include 'shared'
include 'api'
include 'services:webservice'
*/

rootProject.name = 'testcase'

build.gradle

apply plugin: 'java-library'
apply plugin: 'org.springframework.boot'

buildscript {

repositories {
    maven {
        name 'Aliyun Maven Repository'
        url "http://maven.aliyun.com/nexus/content/groups/public/"
    }
}
dependencies {
    classpath "org.springframework.boot:spring-boot-gradle-plugin:1.5.18.RELEASE"
    classpath "io.spring.gradle:dependency-management-plugin:1.0.5.RELEASE"
}

}
// In this section you declare where to find the dependencies of your project
repositories {

maven {
    name 'Aliyun Maven Repository'
    url "http://maven.aliyun.com/nexus/content/groups/public/"
}
jcenter()

}

springBoot {

executable = true
mainClass = 'com.casetest.TestCaseBoot'

}

dependencies {

//Spring boot
compile 'org.springframework.boot:spring-boot-starter-web:1.5.18.RELEASE'

// Swagger2
compile 'io.github.swagger2markup:swagger2markup:1.3.3'
compile 'io.springfox:springfox-swagger2:2.9.0'
compile 'io.springfox:springfox-swagger-ui:2.9.0'

api 'org.apache.commons:commons-math3:3.6.1'

implementation 'com.google.guava:guava:23.0'

testImplementation 'junit:junit:4.12'

}

src下的文件:

package com.casetest;

import java.io.IOException;
import java.util.ArrayList;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.ServletComponentScan;
import org.springframework.context.annotation.Bean;

import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
import springfox.documentation.service.ApiInfo;
import springfox.documentation.service.Contact;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;

@EnableSwagger2
@SpringBootApplication
@ServletComponentScan //启动器启动时,扫描本目录以及子目录带有的webservlet注解的
public class TestCaseBoot {

public static void main(String[] args) throws IOException {
    SpringApplication.run(TestCaseBoot.class, args);
    System.out.println("success");
}


/*@Bean // 一定要加,不然这个方法不会运行 // 一定要返回ServletRegistrationBean
public ServletRegistrationBean getServletRegistrationBean() { 
    ServletRegistrationBean bean = new ServletRegistrationBean(new CaseTwoServlet()); 
    bean.addUrlMappings("/secondServlet"); // 访问路径值
    return bean;
}*/

@Bean
public Docket docket() {
    return new Docket(DocumentationType.SWAGGER_2).groupName("agent").select()
            .apis(RequestHandlerSelectors.basePackage("com.casetest"))
            .paths(PathSelectors.any())
            .paths(PathSelectors.ant("/api/**/*"))
            .build()
            .apiInfo(new ApiInfo("API", "这App等相关的API", "v3", "Terms of service",
                    new Contact("Test", "http://www.testcase.com", ""), "", "", new ArrayList<>()));
}

}

package com.casetest.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;

@Configuration
@ComponentScan({

"com.casetest.rs", 
"com.casetest.schedule",
"com.casetest.service"

})
public class WebAutoConfiguration {

@Bean
public RestTemplate restTemplate() {
    return new RestTemplate();
}

}

package com.casetest.config;

import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;

@Configuration
public class WebMvcConfiguration extends WebMvcConfigurerAdapter {

@Override
public void addCorsMappings(CorsRegistry registry) {
    registry.addMapping("/**")
            .allowedOrigins("*")
            .allowedMethods("POST", "GET", "PUT", "OPTIONS", "DELETE")
            .maxAge(3600)
            .allowCredentials(true);
}

}

package com.casetest.rs;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

@RequestMapping("/api/case/one")
@RestController
public class CaseOneRS {

@RequestMapping(value="/sayHi",method= {RequestMethod.GET})
public String sayHi(String name) {
    return "Hi " + name;
}

@RequestMapping(value="/sayHi",method= {RequestMethod.POST})
public String replyHi(String name) {
    return "me to " + name;
}

}

package com.casetest.rs;

import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

@WebServlet(urlPatterns="/api/case/two",loadOnStartup=1)
public class CaseTwoServlet extends HttpServlet{

/**
 * 
 */
private static final long serialVersionUID = 1L;

@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
    System.out.println("get....");
    super.doGet(req, resp);
}

@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
    System.out.println("post....");
    super.doPost(req, resp);
}

}

相关文章
|
1月前
|
缓存 监控 Java
|
2月前
|
Java 数据库连接 Maven
mybatis使用一:springboot整合mybatis、mybatis generator,使用逆向工程生成java代码。
这篇文章介绍了如何在Spring Boot项目中整合MyBatis和MyBatis Generator,使用逆向工程来自动生成Java代码,包括实体类、Mapper文件和Example文件,以提高开发效率。
142 2
mybatis使用一:springboot整合mybatis、mybatis generator,使用逆向工程生成java代码。
|
1月前
|
缓存 监控 Java
|
2月前
|
前端开发 Java Apache
Springboot整合shiro,带你学会shiro,入门级别教程,由浅入深,完整代码案例,各位项目想加这个模块的人也可以看这个,又或者不会mybatis-plus的也可以看这个
本文详细讲解了如何整合Apache Shiro与Spring Boot项目,包括数据库准备、项目配置、实体类、Mapper、Service、Controller的创建和配置,以及Shiro的配置和使用。
487 1
Springboot整合shiro,带你学会shiro,入门级别教程,由浅入深,完整代码案例,各位项目想加这个模块的人也可以看这个,又或者不会mybatis-plus的也可以看这个
|
2月前
|
Java BI API
spring boot 整合 itextpdf 导出 PDF,写入大文本,写入HTML代码,分析当下导出PDF的几个工具
这篇文章介绍了如何在Spring Boot项目中整合iTextPDF库来导出PDF文件,包括写入大文本和HTML代码,并分析了几种常用的Java PDF导出工具。
558 0
spring boot 整合 itextpdf 导出 PDF,写入大文本,写入HTML代码,分析当下导出PDF的几个工具
|
2月前
|
JSON NoSQL Java
springBoot:jwt&redis&文件操作&常见请求错误代码&参数注解 (九)
该文档涵盖JWT(JSON Web Token)的组成、依赖、工具类创建及拦截器配置,并介绍了Redis的依赖配置与文件操作相关功能,包括文件上传、下载、删除及批量删除的方法。同时,文档还列举了常见的HTTP请求错误代码及其含义,并详细解释了@RequestParam与@PathVariable等参数注解的区别与用法。
|
2月前
|
消息中间件 Java 大数据
大数据-56 Kafka SpringBoot与Kafka 基础简单配置和使用 Java代码 POM文件
大数据-56 Kafka SpringBoot与Kafka 基础简单配置和使用 Java代码 POM文件
74 2
|
2月前
|
前端开发 Java
学习SpringMVC,建立连接,请求,响应 SpringBoot初学,如何前后端交互(后端版)?最简单的能通过网址访问的后端服务器代码举例
文章介绍了如何使用SpringBoot创建简单的后端服务器来处理HTTP请求,包括建立连接、编写Controller处理请求,并返回响应给前端或网址。
58 0
学习SpringMVC,建立连接,请求,响应 SpringBoot初学,如何前后端交互(后端版)?最简单的能通过网址访问的后端服务器代码举例
|
2月前
|
监控 Java 开发者
掌握SpringBoot扩展接口:提升代码优雅度的16个技巧
【10月更文挑战第20天】 SpringBoot以其简化配置和快速开发而受到开发者的青睐。除了基本的CRUD操作外,SpringBoot还提供了丰富的扩展接口,让我们能够更灵活地定制和扩展应用。以下是16个常用的SpringBoot扩展接口,掌握它们将帮助你写出更加优雅的代码。
87 0
|
3月前
|
SQL JSON Java
springboot 如何编写增删改查后端接口,小白极速入门,附完整代码
本文为Spring Boot增删改查接口的小白入门教程,介绍了项目的构建、配置YML文件、代码编写(包括实体类、Mapper接口、Mapper.xml、Service和Controller)以及使用Postman进行接口测试的方法。同时提供了SQL代码和完整代码的下载链接。
springboot 如何编写增删改查后端接口,小白极速入门,附完整代码