码迷,mamicode.com
首页 >  
搜索关键字:php spring    ( 126521个结果
nginx 配置html后缀当php解析
修改php-fpm.conf security.limit_extensions = .php .html 查看php-fpm.conf内listen,如果是端口则nginx.conf server内容为 location ~ \.php|\.html(.*)$ { fastcgi_pass 127 ...
分类:Web程序   时间:2021-05-24 09:26:26    阅读次数:0
安装tp6 并使用多应用模式
参考地址:https://blog.csdn.net/I_lost/article/details/105244803 基本要求:ThinkPHP6.0的环境要求:PHP >= 7.1.0 6.0版本开始,必须通过Composer方式安装和更新,所以你无法通过Git下载安装。 当前环境:WAMPco ...
分类:其他好文   时间:2021-05-24 09:02:55    阅读次数:0
项目启动注释模板
在启动Spring获取SpringBoot项目时,控制台都会出现一个注释,但是有时候却希望出现自己的注释,可以使用这个网站:http://patorjk.com/software/taag 例如,在文本框中输入 hello world,然后选择字体,就会出现: _ _ _ _ _ | | | | | ...
分类:其他好文   时间:2021-05-24 09:00:56    阅读次数:0
spring 装配
@Autowired@Qualifier("xiaohon")autowired 依据type装配,如果有多个相同的type的bean需要使用qualifier指定具体的类 <bean class="pojo.People" ><!-- <qualifier value="xiohon"/>--> ...
分类:编程语言   时间:2021-05-24 08:57:56    阅读次数:0
Spring Security 入门(基本使用)
Spring Security 入门(基本使用) 这几天看了下b站关于 spring security 的学习视频,不得不说 spring security 有点复杂,脑袋有点懵懵的,在此整理下学习内容。 1、入门 1.1、什么是 spring security spring security 是一 ...
分类:编程语言   时间:2021-05-24 08:31:15    阅读次数:0
spring循环依赖
@Component classA{ @Autowire private ClassB classB; } @Component classB{ @Autowire private ClassA classA; } 代码执行流程 首先进入org.springframework.beans.facto ...
分类:编程语言   时间:2021-05-24 08:23:12    阅读次数:0
php后台+微信小程序 列表页面
//php查询数据 static public function selfs($id){ return self::where('id',$id)->first();}//内置验证 $this->validate(request(),[ 'username'=>'required', 'pwd'=> ...
分类:微信   时间:2021-05-24 08:18:55    阅读次数:0
(三)运用feign
整合feign 首先需要在下单的服务中整合 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> <version>2.2.3 ...
分类:其他好文   时间:2021-05-24 07:39:25    阅读次数:0
Docker 构建PHP镜像
一、构建PHP镜像需要用到的命令 以下命令都需要在php容器中执行 docker-php-source:是在PHP容器中创建一个/usr/src/php的目录,里面放了一些自带的文件,自带的PHP扩展,扩展存放的路径/usr/src/php/ext docker-php-source [ extra ...
分类:Web程序   时间:2021-05-24 07:33:02    阅读次数:0
xxl-job 执行器调度
源码:https://github.com/xuxueli/xxl-job 按文档启动xxl-job-admin后,可以自己写执行器 执行器: 新建springboot服务 选中spring web、Mysql Driver、JDBC API、Mybatis Framework等依赖 pom.xml ...
分类:其他好文   时间:2021-05-24 07:07:54    阅读次数:0
126521条   上一页 1 ... 36 37 38 39 40 ... 12653 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!