- 博客(3)
- 收藏
- 关注
原创 IDEA 关于乱码(Server、控制台等)解决方法
1、IDEA里File->Setting->Editor->fileEncoding 设置UTF-82、打开本地TomCat->apache-tomcat-8.5.57->conf->logging.properties设置成UTF-83、IDEA里 Help->edit custom VM OPtions最后一行里添加-Dfile.encoding=UTF-84、IDEA TOMCAT添加-Dfile.encoding=UTF-85、打开本
2021-06-16 16:36:11
1481
2
原创 SpringBoot gradle项目 Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedd
SpringBoot gradle项目 Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedded datasource问题解决参考首先说明一下,每个人的情况不一,这里只是说我出现这种情况时候的解决办法,仅供参考,内容也是自己辛苦经历写下来的非简单的复读机。在最近创建springBoot gradle项目时候 resources下的application.properties和build.gradl
2021-05-08 15:43:05
466
1
原创 Java递归实现斐波那契数列和阶乘
Java递归实现斐波那契数列和阶乘1.斐波那契数列public int f(n){if(n == 0 || n == 1){return n;}return f(n-1)+f(n-2);}2.阶乘public int f(n){if(n==1){return 1;}return n*f(n-1);}
2020-11-15 21:11:33
199
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人