提交 06102579 编写于 作者: 老丢丢's avatar 老丢丢

更新

上级 331a431b
......@@ -34,10 +34,10 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
public class CommonConfigApplication {
public static void main(String[] args) {
SpringApplication springApplication = new SpringApplication(CommonConfigApplication.class);
//设置Banner模式为关闭,即不显示Banner内容
// springApplication.setBannerMode(Banner.Mode.OFF);
springApplication.run(args);
// SpringApplication.run(CommonConfigApplication.class, args);
// SpringApplication springApplication = new SpringApplication(CommonConfigApplication.class);
// //设置Banner模式为关闭,即不显示Banner内容
//// springApplication.setBannerMode(Banner.Mode.OFF);
// springApplication.run(args);
SpringApplication.run(CommonConfigApplication.class, args);
}
}
server:
port: 8888
# port: 8888 # HTTP端口号
address: #绑定的网络地址
servlet:
context-path: /
spring:
application:
name: commonConfig
main:
log-startup-info: true # 启动应用的用户 PID profiles 启动用时
banner:
location: banner.txt
logging:
level:
org.springframework.web: trace # TRACE DEBUG INFO WARN ERROR FATAL OFF
\ No newline at end of file
context-path: / # 上下文路径,即项目访问路径
# ssl:
# key-store-type: #证书类型
# key-store: # 证书路径
# key-store-password: # 证书密码
tomcat:
accept-count: 2000 #
max-connections: 8192 # 最大连接数
max-threads: 2000 # 线程池最大线程数
min-spare-threads: 100 # 最小线程数
connection-timeout: 30000 # 超时时间
#spring:
# application:
# name: commonConfig
# main:
# log-startup-info: true # 启动应用的用户 PID profiles 启动用时
# banner:
# location: banner.txt
#logging:
# level:
# org.springframework.web: trace # TRACE DEBUG INFO WARN ERROR FATAL OFF
\ No newline at end of file
一、内容容器
1、SpringBoot支持Tomcat(默认)、Jetty、Undertow等Servlet容器
2、通过添加相关依赖来替换容器
/*
* Copyright (c) 2019, PANNK and/or its affiliates. All rights reserved.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package com.pannk.demo;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* @author:wolf
* @date:2020/10/31 22:12
**/
@RequestMapping("/test")
@RestController
public class FirstController {
@GetMapping("/sayHello/{name}")
public String sayHello(@PathVariable String name){
return "Hello,"+ name;
}
}
package com.pannk.demo.firstapplication;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
......@@ -10,6 +11,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
*
* @author 老丢丢
*/
//@EnableAutoConfiguration
@SpringBootApplication
public class FirstApplication {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册