菜粥
菜粥
全部文章
SpringBoot
Android(48)
API(6)
C++(11)
CodeBlocks(2)
Docker(12)
Git(2)
GitHub(3)
IDE(16)
Java(41)
JavaWeb(16)
Java编程思想(3)
Linux(37)
MarkDown(2)
Maven(6)
MyBatis(5)
MySQL(14)
Nginx(11)
Oracle(16)
Python(4)
Redis(13)
Spring(8)
Struts2(1)
UML(1)
书籍推荐(2)
图解设计模式(22)
大话设计模式(50)
操作系统(4)
数据库系统概论(7)
数据结构(10)
未归档(1)
计算机组成原理(2)
计算机网络(8)
面试经(4)
归档
标签
去牛客网
登录
/
注册
菜粥很菜
融不进的城市,回不去的故乡。若是生活如意,谁愿颠沛流离。
全部文章
/ SpringBoot
(共6篇)
SpringBoot-解决跨域问题
在服务端新建一个配置类: package com.sdau.camelia.core.config; import org.springframework.context.annotation.Configuration; import org.springframework.web.servl...
2019-12-01
0
479
An incompatible version [1.2.8] of the APR based Apache Tomcat Native library is installed
1. 运行Springboot项目的时候提示错误: An incompatible version [1.2.8] of the APR based Apache Tomcat Native library is installed, while Tomcat requires version ...
2019-12-01
0
920
SpringBoot项目打成War包
1. 首先在pom.xml里添加Tomcat依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>sprin...
2019-09-04
0
377
SpringBoot内置Tomcat启动后自动停止解决方案
SpringBoot内置Tomcat启动后自动停止,并且控制台看不到任何有效信息,这时候可以在主类捕捉一下异常,然后根据自己的情况分析到底是哪里出问题了(控制台会有日志输出): @SpringBootApplication public class Application { publi...
2019-08-31
0
915
SpringBoot注解大全
公众号链接: https://mp.weixin.qq.com/s?__biz=MzI3ODcxMzQzMw==&mid=2247490531&idx=2&sn=4c6a98efa80ff1faefb1c77a5d474167&chksm=eb539ed5dc2417...
2019-08-22
0
430
SpringBoot-YAML语法
文章目录 一、基本语法规则 二、支持的数据结构 1. 对象 2. 数组 3. 复合结构 4. 纯量 一、基本语法规则 大小写敏感 使用缩进表示层级关系 缩进时不允许使用Tab键,只允许使用空格。 ...
2019-08-19
0
410