springboot实战---4.常用内容小结
maven配置阿里云镜像
xml
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
使用Maven搭建springboot
- 创建普通maven项目
- 添加依赖
xml
<!--父工程为springboot项目-->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.3.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<!--依赖-->
<dependencies>
<!--springboot依赖-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>1.5.3.RELEASE</version>
</dependency>
</dependencies>
<!-- 插件-->
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
- 编写启动类
java
@SpringBootApplication
public class MainApplication {
public static void main(String[] args) {
SpringApplication.run(MainApplication.class);
}
}
- 创建配置文件application.yml
- 启动项目
集成Lombok
- 添加依赖
xml
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
- 安装插件
File-->Setting-->plugins-->搜索并安装Lombok - pojo类上直接加@Data即可
业务逻辑层注入
日志使用
- 方式1:类上加注解
java
@RestController
@RequestMapping("/user")
@Slf4j
public class UserController {
@RequestMapping
public Object list() {
log.info("查询");
return "查询中...";
}
}
- 方式2:直接实例化
java
Logger logger = LoggerFactory.getLogger(Class.class);
logger.trace("logger_trace");
logger.debug("logger_debug");
logger.info("logger_info");
logger.warn("logger_warn");
logger.error("logger_error");
Controller映射使用
正解:
@RestController
@RequestMapping("xxx")
错解:
@RestController("xxx")
排除内置tomacat
参考自:https://blog.csdn.net/eguid_1/article/details/52609600
- 排除org.springframework.boot依赖中的tomcat内置容器
xml
<!-- spring-boot web -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<!-- 排除内置容器,排除内置容器导出成war包可以让外部容器运行spring-boot项目-->
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
- 入口程序实现SpringBootServletInitializer接口
java
@SpringBootApplication
// 开启通用注解扫描
@ComponentScan
public class Application extends SpringBootServletInitializer {
/**
* 实现SpringBootServletInitializer可以让spring-boot项目在web容器中运行
*/
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
builder.sources(this.getClass());
return super.configure(builder);
}
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
- 引入javax.servlet
xml
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
配置文件
yml
- 文件的读取参数
yml
my:
name: king james
age: 33
number: ${random.int}
uuid: ${random.uuid}
max: ${random.int(10)}
value: ${random.value}
greeting: hi,i'm ${my.name}
- 创建pojo类进行映射
yml
@ConfigurationProperties(prefix = "my")
@Component
public class Play {
private String name;
private int age;
private int number;
private String uuid;
private int max;
private String value;
}
- 注入pojo类获取值
profile
一个application.yml文件搞定
yml
server:
port: 8085
spring:
profiles:
active: prod
---
server:
port: 8083
spring:
profiles: dev
---
server:
port: 8084
spring:
profiles: prod #指定属于哪个环境
也可将每个---下的内容单独提取出来一个application-xxx.yml文件。
上述的可替换为application-dev.yml , application-prod.yml
自定义propertites注入
自定义yml可能不可以注入【该条可能有问题】
person.properties
properties
person.name=bbb
Person.java
java
@Component
@PropertySource("classpath:person.properties")
public class Person {
@Value("${person.name}")
String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
- application.yml静态字段映射【可能有问题】
get方法使用静态,set方法不能使用静态,否则获取值为null
其他(待完善)
maven(打包部署、pom文件)
springboot自动配置
常用注解
一些链接
线上问题排查
tomcat乱码
tomcat目录结构
验证码
多文件上传和下载1
多文件上传和下载-Servlet
RequestBody使用
Springmvc学习
http请求头