swagger问题
Failed to start bean ‘documentationPluginsBootstrapper’;解决,pom.xml中添加依赖<dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>25.1-jre</version></dependency>
还需要在application.properties中添加spring.mvc.pathmatch.matching-strategy=ANT_PATH_MATCHER
访问http://localhost:8080/swagger-ui.html
springMVC静态资源导出配置
静态资源导出 pom.xml<build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.xml</include> </includes> <filtering>true</filtering> </resource> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.xml</include> ...
SpringMVC字符集问题
SpringMVC annotation 遇到的字符集问题com.sun.org.apache.xerces.internal.impl.io.MalformedByteSequenceException 3 字节的 UTF-8 序列的字节 3 无效
解决方式配置字符集,在pom.xml文件中<plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.3.0</version> <configuration> <encoding>utf-8</encoding> </configuration> </pl ...
将进酒
将进酒李白 〔唐代〕
君不见黄河之水天上来,奔流到海不复回。君不见高堂明镜悲白发,朝如青丝暮成雪。人生得意须尽欢,莫使金樽空对月。天生我材必有用,千金散尽还复来。烹羊宰牛且为乐,会须一饮三百杯。岑夫子,丹丘生,将进酒,杯莫停。与君歌一曲,请君为我倾耳听。钟鼓馔玉不足贵,但愿长醉不愿醒。古来圣贤皆寂寞,惟有饮者留其名。陈王昔时宴平乐,斗酒十千恣欢谑。主人何为言少钱,径须沽取对君酌。五花马、千金裘,呼儿将出换美酒,与尔同销万古愁。
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post$ hexo new "My New Post"
More info: Writing
Run server$ hexo server
More info: Server
Generate static files$ hexo generate
More info: Generating
Deploy to remote sites$ hexo deploy
More info: Deployment
玩转Git
玩转Gitlinux常用命令cd 改变目录cd .. 回退上一个目录pwd 显示当前所在的目录路径ls(ll) 列出当前目录中的所有文件touch 新建一个文件rm 删除一个文件mkdir 新建一个文件夹rm -r 删除一个文件夹reset 重新初始化终端/清屏clear 清屏history 查看命令历史help 帮助exit 退出# 表示注释
git常用命令git config -l 查看配置(显示name 和 email)git config --system --list 查看系统配置(没有name 和 email)git config --global --list 查看本地配置(单独显示出name 和 email)git config --global user.name "" 设置用户名git config --global user.email "" 设置邮箱
Git基本理论Git本地三个工作区域工作目录(Working Directory) ...
玩转IDEA
玩转IDEA单词缩写SDKSoftware-Development-Kit(软件开发工具包)APIApplication-Programming-Interface(应用编程接口)DLLDynamic-Link-Libary(动态连接库)
安装目录结构bin: 容器,执行文件和启动参数等help: 快捷键文档和其他帮助文档jre64: 64 位java 运行环境lib: idea 依赖的类库license: 各个插件许可plugin: 插件
idea常用快捷键shift+f4 截图Ctrl+X 删除行ctrl+y 删除一行代码ctrl+d 复制当前行到下一行ctrl+h 显示当前类到继承层次Ctrl+= 展开代码Ctrl+- 折叠代码Ctrl+/ 注释ctrl+f 打开查找Ctrl+Shift+/ 选中的行多行注释Ctrl+/ 选中的行注释或取消注释Ctrl+Shift+F10 运行当前文件Ctrl+P 提示方法的参数Ctrl+Alt+L 选中的行代码格式化Ctrl+Shift+up/do ...