(一)OS的接口有两类: GUI:Graphic User Interface (图形化界面接口) CLI:Command Line Interface(文本式接口) (二)API 及 ABI 1. API:Application Program Interface 程序员面对的编程接口 2.ABI ...
分类:
系统相关 时间:
2021-06-28 17:38:15
阅读次数:
0
这个错误的出现一般是SpringBoot的启动类(类名上面有@SpringBootApplication注解 )与controller包不在同一个目录下,解决方案就是把启动类和controller包放在同目录下就可以啦。 这个错误出现需要将Controller层中的@Controller注解改为@R ...
分类:
移动开发 时间:
2021-06-25 16:59:24
阅读次数:
0
#JSP四大作用域 ##1、概述 域是在区域,在javaweb中指不同的资源,例如servlet,JSP 由于在不同的域直接要传递参数,所有就有了域对象 ##2、四大作用域 ###1、page域 对应了jsp域对象:PageContext 范围:作用与当前页面 ###2、Request域 对应了js ...
分类:
移动开发 时间:
2021-06-22 17:56:10
阅读次数:
0
server: port: 8080 spring: application: name: gateway cloud: gateway: routes: - id: guo-system4 uri: https://www.baidu.com predicates: - Query=smile # ...
分类:
其他好文 时间:
2021-06-21 20:30:01
阅读次数:
0
【下载地址】 https://github.com/apache/dubbo-admin/tree/master 解压后进入目录:D:\dubbo-admin-master\dubbo-admin\src\main\resources,修改application.properties文件zk地址: ...
分类:
其他好文 时间:
2021-06-21 19:54:18
阅读次数:
0
简单设置环境变量,以及密码 1.把mysql命令加入环境变量 [root@master01 ~]# vim /etc/profile.d/mysql.sh #!/bin/bash export MYSQL=/application/mysql export PATH=$PATH:$MYSQL/bin ...
分类:
数据库 时间:
2021-06-20 18:49:27
阅读次数:
0
首先检查Nginx是否启动成功 [root@web1 extra]# ps aux|grep nginx (一切正常)root 3269 0.0 0.1 46764 1464 ? Ss 09:34 0:00 nginx: master process nginx -c /application/ng ...
分类:
其他好文 时间:
2021-06-20 18:09:23
阅读次数:
0
源码基于SpringBoot 2.4.4 1、认识配置文件 1.1 配置文件的加载 创建SpringBoot项目的时候,会自动创建一个application.properties文件,该文件是SpringBoot默认的配置文件。 SpringBoot在启动的时候会默认去寻找并加载applicatio ...
分类:
移动开发 时间:
2021-06-19 19:25:15
阅读次数:
0
Introduction# When WPF application launched, it could take a while for a current language runtime (CLR) to initialize .NET Framework. As a result, fir ...
1.选择依赖 SpringWeb,JDBC API, MybatisFramework, MysqlDriver 2.application.yml 将 application.properties改为application.yml(使用更简洁), application.yml文件内容如下: se ...
分类:
编程语言 时间:
2021-06-17 17:15:52
阅读次数:
0