伍佰目录 短网址
  当前位置:海洋目录网 » 站长资讯 » 站长资讯 » 文章详细 订阅RssFeed

Spring Boot + Vue3 前后端分离 实战wiki知识库系统

来源:本站原创 浏览:123次 时间:2022-02-03
download:Spring Boot + Vue3 前后端分离 实战wiki知识库系统

通过一个界面简约、功能完整的知识库项目,带你快速掌握Spring Boot核心知识+ Vue全家桶全栈技能。在此过程中,打造一套通用的组件工具(可应用于其他项目),掌握前后端分离开发模式,搭建一个专属自己的、内容可灵活配置的知识库系统。

技术要求
具备Java、MySQL基础
具备HTML+CSS+JavaScript基础
环境参数
Spring Boot 2.4
Vue3
Vue CLI 4.5
函數操作
對條件字段做函數操作走不了索引。

select * from t1 where date© =‘2019-05-21’;
優化:改成範圍查询

select * from t1 where c>=‘2019-05-21 00:00:00’ and c<=‘2019-05-21 23:59:59’;
隱式轉換
操作符與不同類型的操作對象一同運用時,就會發作類型轉換以使操作兼容。

select user_name,tele_phone from user_info where tele_phone =11111111111; / tele_phone varchar /
實践會做函數操作:

select user_name,tele_phone from user_info where cast(tele_phone as singed int) =11111111111;
優化:類型統一

select user_name,tele_phone from user_info where tele_phone =‘11111111111’;
含糊查询
通配符在前面

select * from t1 where a like ‘%1111%’;
優化:含糊查询必需包含條件字段前面的值

select * from t1 where a like ‘1111%’;
範圍查询
範圍查询數據量太多,需求回表,因而不走索引。

select * from t1 where b>=1 and b <=2000;
優化:降低單次查询範圍,分屢次查询。(實践可能速度沒得快太多,倡議走索引)

select from t1 where b>=1 and b <=1000;
show profiles;
±---------±-----------±-----------------------------------------+
| Query_ID | Duration | Query |
±---------±-----------±-----------------------------------------+
| 1 | 0.00534775 | select
from t1 where b>=1 and b <=1000 |
| 2 | 0.00605625 | select * from t1 where b>=1 and b <=2000 |
±---------±-----------±-----------------------------------------+
2 rows in set, 1 warning (0.00 sec)
計算操作
即便是简單的計算

explain select * from t1 where b-1 =1000;
優化:將計算操作放在等號後面

explain select * from t1 where b =1000 + 1;

翻了很多题解,只能看懂这种解法,够直观够暴力。

class Solution {
public:
vector<string> restoreIpAddresses(string s) {
vector<string> res;

    for (int a = 1; a < 4; a ++ )        for (int b = 1; b < 4; b ++ )            for (int c = 1; c < 4; c ++ )                for (int d = 1; d < 4; d ++ )           //abcd分别表示四段ip地址长度                {                    if (a + b + c + d == s.size())      //四段长度刚好                    {                        string s1 = s.substr(0, a);     //分别截取四段ip地址                        string s2 = s.substr(a, b);                        string s3 = s.substr(a + b, c);                        string s4 = s.substr(a + b + c);                        if (check(s1) && check(s2) && check(s3) && check(s4))                        {                            string ip = s1 + '.' + s2 + '.' + s3 + '.' + s4;                            res.push_back(ip);                        }                    }                }    return res;}bool check(string s)        //判断ip地址每段的第一位不为0,或只有一位且该位为0{    if (stoi(s) <= 255)        if (s[0] != '0' || (s[0] == '0' && s.size() == 1)) return true;    return false;}

};
下一篇:【切割问题都可以用回溯搜索来解决】详解!
© 著作权归作者所有
1
条评论

最热

编辑
预览

评论

阿兹卡班在逃犯
L2
2021-03-13
贴一个java的

class Solution {
public List<String> restoreIpAddresses(String s) {
List<String> list = new ArrayList();
for(int a=1; a<4; a++){
for(int b=1; b<4; b++){
for(int c=1; c<4; c++){
for(int d=1; d<4; d++){
if(a+b+c+d==s.length()){
String s1 = s.substring(0, a);
String s2 = s.substring(a, a+b);
String s3 = s.substring(a+b, a+b+c);
String s4 = s.substring(a+b+c, a+b+c+d);

                        if(check(s1)&&check(s2)&&check(s3)&&check(s4)){                            String ip = s1+"."+s2+"."+s3+"."+s4;                            list.add(ip);                        }                    }                }            }        }    }    return list;}public boolean check(String s){    if(Integer.valueOf(s)<=255){        if(s.charAt(0)!='0' || s.charAt(0)=='0'&&s.length()==1)             return true;    }    return false;}

}

  推荐站点

  • At-lib分类目录At-lib分类目录

    At-lib网站分类目录汇集全国所有高质量网站,是中国权威的中文网站分类目录,给站长提供免费网址目录提交收录和推荐最新最全的优秀网站大全是名站导航之家

    www.at-lib.cn
  • 中国链接目录中国链接目录

    中国链接目录简称链接目录,是收录优秀网站和淘宝网店的网站分类目录,为您提供优质的网址导航服务,也是网店进行收录推广,站长免费推广网站、加快百度收录、增加友情链接和网站外链的平台。

    www.cnlink.org
  • 35目录网35目录网

    35目录免费收录各类优秀网站,全力打造互动式网站目录,提供网站分类目录检索,关键字搜索功能。欢迎您向35目录推荐、提交优秀网站。

    www.35mulu.com
  • 就要爱网站目录就要爱网站目录

    就要爱网站目录,按主题和类别列出网站。所有提交的网站都经过人工审查,确保质量和无垃圾邮件的结果。

    www.912219.com
  • 伍佰目录伍佰目录

    伍佰网站目录免费收录各类优秀网站,全力打造互动式网站目录,提供网站分类目录检索,关键字搜索功能。欢迎您向伍佰目录推荐、提交优秀网站。

    www.wbwb.net