- 博客(6)
- 收藏
- 关注
原创 Eclipse运行springboot项目,启动闪退,出现No active profile set, falling back to default profiles: default。
最近在eclipse上跑一个springboot的demo,使用过程中发现项目一直启动失败,但是项目并没有报错,只是出现了No active profile set, falling back to default profiles: default浏览了各种博客里的解决方法,大部分都没有借鉴意义,直至最后看到一个关于依赖冲突的内容,主要操作是右击maven项目,选择maven buil...
2020-05-07 22:18:49 1054
转载 Eclipse安装配置MAVEN以及常见问题
1.安装与配置见http://wenku.cyjzzd.com/a/132546##wk-more2.MAVEN项目常见报错:Failure to transfer org.apache.maven:maven-archiver:pom:*** from ...
2020-04-30 11:03:05 302
原创 Mysql 常见错误代码: 1064
##建表create table r_user(uid int(10) not null auto_increment,uname varchar(100) not null,pwd varchar(100) not null,PRIMARY KEY(uid))##插入数据insert into r_user values(default,'zhangsan','123'...
2019-11-25 11:15:07 1133
原创 RuntimeError: cryptography is required for sha256_password or caching_sha2_password
import pymysqlprint(pymysql)# 打开数据库连接(ip/数据库用户名/登录密码/数据库名)db = pymysql.connect("localhost", "root", "root", "sys")# 使用 cursor() 方法创建一个游标对象 cursorcursor = db.cursor()# 使用 execute() 方法执行 SQL 查...
2019-10-22 10:29:45 1050
原创 break仅仅作用于所处的循环,对于外部循环没有影响。
public class TestBreak { public static void main(String[] args) { testBreak(); } public static void testBreak() { for(int i = 0;i<3;i++) { for(int j = 0;j<...
2019-04-11 15:40:22 324
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人