Spring基础概念123456springframe 房子的最基本框架绝大数的java应用开发都需要用到springspringboot在spring家族中用得最多spring6 最低支持java17spring5 最低支持java8spring发展到今天已经是一个生态体系
123456java web框架发展过程:1.servlet+jsp2.MVC三层架构web层()业务层数据层
1EJB 用于降低MVC框架各类之间的耦合度 负责new类 维护类 但是侵入性太强,后期不易更换掉EJB框架
1233.SSH架构struts1/struts2+Hibernate+springspring负责new对象 hibernate负责数据库访问 struts负责页面跳转
1234.SSMspringmvc+mybatis+spring mybatis和hibernate类型 前者更适合复杂的sql语句
1235.springboot解决了4需要配置大量xml文件的难度现在很多公司都是基于springboot配置ssm框架,开展工作
Spring框架1spring framewor ...
MarkDown高阶玩法跳转标记名称
跳转到的地方
表格123| Column 1 | Column 2 | Column 2 ||:--------|:--------:| --------:|| left-aligned 文本居左 | centered 文本居中 | right-aligned 文本居右 |
字体-我是楷体字-
-END-
图片1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431 ...
linux2流程控制12345678910111213141516171819202122232425262728293031323334353637383940414243444546#!/bin/bash# ods层数据库和表初始化脚本,只需要执行一次hive -e "create database if not exists ods_mall;create external table if not exists ods_mall.ods_user_active( log string)partitioned by (dt string) row format delimited fields terminated by '\t' location 'hdfs://bigdata01:9000/data/ods/user_action/'; create external table if not exists ods_mall.ods_click_good( log string)partitioned ...
npm使用–verbose参数使用这个什么npm命令时,后面加个**–verbose**参数,不然每次都看不出来,命令到底又没有在运行~
https://registry.npmjs.org/xxxxx attempt 1 failed with ECONNREFUSED报这种错误:npm http fetch GET https://registry.npmjs.org/xxxxx attempt 1 failed with ECONNREFUSED
先查看代理
12$ npm config get https-proxyhttp://127.0.0.1:8080
查看本地端口又没有对应服务
1$ netstat -ano
清空代理
12npm config delete https-proxynpm config delete proxy
12npm config get proxynpm config get https-proxy
结果都返回null,说明清空了
到这里至少不报这种错误,想哭~
十分感谢下面的链接,现在要在搜索引擎里能找到一份解决方案太难了~
参考链接
...
maven常识安装配置12345按照大数据开发工程师hdfs那章安装的 下载 解压 环境变量 安装目录下setting配置文件配置.m2位置 idea设置里配置maven home user setting local repository廖雪峰讲的也可以
maven仓库位置1mvnrepository.com
pom添加依赖12345<dependecies> <dependecy> ... </dependecy></dependecies>
编译打包插件12345678910111213141516171819202122232425262728293031323334353637383940<build> <plugins> <!-- compiler插件, 设定JDK版本 --> <plugin> <groupId>org.apache.maven.plugins</g ...
linux1逻辑结构条件判断if elif else1234567if [[ "$USER" == "lk" ]]; then echo "欢迎回来,lk!正在为您加载个人环境..."else echo "错误:此脚本只能由用户 '' 执行。" echo "当前用户是:$USER" exit 1 # 以非0状态退出,表示脚本执行失败fi
1234567if [ 条件判断表达式 ];then xxxelif [ 其他条件 ];then xxxelse xxxfi
123注意事项:(1)[ 条件判断式 ],括号和条件判断式之间必须有空格(2)if后要有空格
123[ condition ](注意 condition 前后要有空格)注意:条件非空即为true,[atguigu]返回 true,[]返回 false。
两个整数比较1比较运算符左右也要有空格
123456= 字符串比较 -lt 小于(less than)-le 小于等于( ...





