项目问题解决汇总
未读
git忽略提交过一次的文件
执行如下命令即可 git update-index --assume-unchanged src/main/resources/application.properties
程序安装
未读
flutter SDK 需要更新dart
我下载的windows版的flutter 在flutter sdk目录下的 bin\internal\update_dart_sdk.ps1(Linux可能是update_dart_sdk.sh) 将google的网址替换成如下 if (-not $dartSdkBaseUrl) {
$da
SpringBoot
未读
SpringBoot 配置服务器端跨域
@Configuration
public class OriginConfig {
@Bean
public WebMvcConfigurer corsConfigurer() {
return new
项目问题解决汇总
未读
mvc上传OSS图片卡死
问题 涉及到上传图片到OSS时卡死,前端报错500,Vue中只提示500,另外写了个html单网页测试上传,得到错误 java.lang.ClassNotFoundException: org.jdom.input.JDOMParseException 问题解决 <!-- https://mvnre
踩坑爬出记录
未读
SSM项目运行错误,显示的数据库用户名与配置文件不同
SSM项目运行错误,显示的数据库用户名与配置文件不同 运行时提示错误 显示的用户名和与我的配置文件不同,但是正好是我的windows系统名字 原配置 driver=com.mysql.jdbc.Driver
url=jdbc:mysql://blog.wmgx.top:3306/PhotoAlbum
Maven
未读
maven资源文件不配置
maven项目在运行时非resources目录下的资源文件不配置 在pom.xml文件中添加如下配置 <build>
<resources>
<resource>
<directory>src/main/resource
踩坑爬出记录
未读
git添加公钥后报错sign_and_send_pubkey
错误描述 当在github上添加公钥之后运行ssh -T git@github.com 提示错误: sign_and_send_pubkey: signing failed: agent refused operation
Permission denied (publickey).
解决办法 e