大飞_dafei

导航

2018年1月5日 #

为什么要在linux命令前加上 ./ 什么时候才需要在命令前加上./

摘要: 1.为什么要在linux命令前加上 ./ unix或linux中除了path系统变量外的目录下的命令都要加./ 修改用户的 .bash_profile 在 PATH一行最后加上 ":." (一个冒号,一个点) 然后退出重新登陆用户就ok了! PATH中没有定义路径,加上就ok了 ./表示当前目录,这 阅读全文

posted @ 2018-01-05 15:56 大飞_dafei 阅读(489) 评论(0) 推荐(0) 编辑

2018年1月4日 #

web.xml 介绍 and pom.xml 介绍

摘要: 参考文章: metawerx web.xml web.xml 文件详解 web.xml 中加载顺序 maven pom.xml 阅读全文

posted @ 2018-01-04 15:45 大飞_dafei 阅读(131) 评论(0) 推荐(0) 编辑

2018年1月3日 #

有趣的linux命令

摘要: 有趣的linux命令 1、 sl 命令 安装 $ sudo apt-get install sl 运行 $ sl 2. fortune 命令 安装 $sudo apt-get install fortune安装中文 $sudo apt-get install fortune-zh运行 $fortun 阅读全文

posted @ 2018-01-03 18:28 大飞_dafei 阅读(100) 评论(0) 推荐(0) 编辑

2018年1月2日 #

SpringMVC 中常见注释

摘要: @RequestMapping@PathVariable@ResponseBody@RequestParam 阅读全文

posted @ 2018-01-02 17:09 大飞_dafei 阅读(79) 评论(0) 推荐(0) 编辑

2017年12月25日 #

php逐行读取txt文件写入数组的方法

摘要: php逐行读取txt文件写入数组的方法 测试数据: test01 test02 test03 test04 test05 test06 test07 test08 test09 test10 test11 test12 方法01 $fileUrl = "E:\web\log.txt"; $isss= 阅读全文

posted @ 2017-12-25 17:13 大飞_dafei 阅读(465) 评论(0) 推荐(0) 编辑

2017年12月22日 #

yii2 behaviors

摘要: yii2 behaviors 1、使用控制过滤器, return [ 'access' => [ 'class' => AccessControl::className(), 'rules' => [ [ 'allow' => true, 'actions' => ['index'], 'roles 阅读全文

posted @ 2017-12-22 16:03 大飞_dafei 阅读(84) 评论(0) 推荐(0) 编辑

2017年12月21日 #

安装Mysql官方的sakila数据库

摘要: MySQL官方数据库下载地址;: MySQL官方sakila数据库 安装过程: 1、把下载下来的文件解压后会出现 ; akila-schema.sql 和 sakila-data.sql files 以及sakila.mwb 2、连接 Mysql serve,启动cmd,出入 cd C:\<mysq 阅读全文

posted @ 2017-12-21 17:02 大飞_dafei 阅读(221) 评论(0) 推荐(0) 编辑

yii2 展示静态页面

摘要: 如果你有一些静态页面,并且不会经常修改他们,那么不值得查询数据库,并为他们做页面管理。 工作原理: 我们连接了外部动作,名叫\yii\web\ViewAction,它只是尝试去找到一个视图,和$_GET参数提供的名称一致。如果找到了, 展示它。如果找不到,将会给一个404 not found的页面。 阅读全文

posted @ 2017-12-21 15:13 大飞_dafei 阅读(171) 评论(0) 推荐(0) 编辑

2017年12月20日 #

yii2 手动安装第三方扩展

摘要: yii2 手动安装第三方扩展 1、不使用composer,有autoloader 在入口文件index.php中有两个自动加载,一个是自己的一个值composer的: require __DIR__ . '/../../vendor/autoload.php'; require __DIR__ . 阅读全文

posted @ 2017-12-20 13:57 大飞_dafei 阅读(263) 评论(0) 推荐(0) 编辑

2017年12月19日 #

我应该提交 vendor 目录中的依赖包吗

摘要: 一般情况下 不建议。vendor 目录(或者你安装依赖的其它目录)都应该被添加进 .gitignore/svn:ignore/等等。 最好这么做,然后让所有开发人员使用 Composer 来安装依赖包。同样,build server、CI、deployment tools 等等,应进行修改,使运行 阅读全文

posted @ 2017-12-19 17:54 大飞_dafei 阅读(159) 评论(0) 推荐(0) 编辑