idea 全局ignore配置
在开发时,提交开发代码到git,需要剔除一些不需要提交的文件。那么可以配置一个全局ignore文件。
配置方法
新建一个git.ignore文件,将配置写好。
# DIY
target/# svn
.svn/
# Linux System
*~# KDE directory prefer…
移动端适配
方案 1:rem html font-size
方案 2:vw rem html font-size
rem 是相对于 html 元素的 font-size 来设置的单位,通过在不同屏幕尺寸下动态修改 html 元素的 font-size 可达到适配效果
在开发中,我们只需要考虑两个…
1.添加依赖
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-websocket</artifactId>
</dependency>2.添加配置
Configuration
public class WebSocketConfig {Beanpublic ServerEndpointExpo…