码迷,mamicode.com
首页 >  
搜索关键字:agent configuration    ( 10494个结果
SpringBoot中常用的45个注解
1.SpringBoot/spring @SpringBootApplication: 包含@Configuration、@EnableAutoConfiguration、@ComponentScan通常用在主类上; @Repository: 用于标注数据访问组件,即DAO组件; @Service: ...
分类:编程语言   时间:2021-06-02 19:23:55    阅读次数:0
lnmp下部署magento2 (宝塔CentOS 7.6)
我用的是宝塔CentOS 7.6,php7.3,mysql5.7, nginx1.18 1.下载magento,composer下载总是失败,建议git或码云下载 2. 查看系统要求,并解除宝塔禁用的一些PHP函数 3 解压,进入根目录下, 然后运行 composer -install vvv,会出 ...
分类:其他好文   时间:2021-06-02 18:40:55    阅读次数:0
Java Web 项目学习(二) 生成验证码
Kaptcha导入jar包 编写Kaptcha配置类,在Config包下(配置图片长宽、字的个数、范围、颜色、干扰的点、线) @Configuration public class KaptchaConfig { @Bean public Producer kaptchaProducer (){ / ...
分类:编程语言   时间:2021-06-02 18:32:34    阅读次数:0
eclipse 导出jar包的一种方式
导出之前要把项目提前编译build clean 和 maven build 导出的步骤: 1.选中项目,右键选择[Export] 2.选择[java]-[Runnable JAR file] 3.如果Lanch-configuration没有选项,那肯定是项目没有提前编译运行过 4.结果如下: 可能 ...
分类:编程语言   时间:2021-06-02 18:15:53    阅读次数:0
python3 用requests.get获取网页内容为空 <Response [200]>
import requestsfrom bs4 import BeautifulSoup headers = { 'Cookie':'OCSSID=4df0bjva6j7ejussu8al3eqo03', 'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win ...
分类:编程语言   时间:2021-06-02 16:41:36    阅读次数:0
SpringBoot2.x集成springSecurity和OAuth2.0启动错误处理
当启用@EnableAuthorizationServer注解时,启动项目报错 报错信息 Description: Field configurers in org.springframework.security.oauth2.config.annotation.web.configuration ...
分类:编程语言   时间:2021-06-02 14:05:33    阅读次数:0
MyBatis-Plus
MyBatis_Plus 代码生成器 开启Mapper接口扫描 @Configuration @EnableTransactionManagement @MapperScan("com.hu.mylearn.mapper") public class MyBatisPlusConfig { // 旧 ...
分类:其他好文   时间:2021-06-02 13:39:52    阅读次数:0
filter,interceptor,controllerAdvice,aspect,controller执行顺序
1、filter,这是java的过滤器,和框架无关的,是所有过滤组件中最外层的,从粒度来说是最大的。 配置方式,有直接实现Filter+@component,@Bean+@configuration(第三方的filter) 2、interceptor,spring框架的拦截器 配置方式,@confi ...
分类:Web程序   时间:2021-06-02 13:00:20    阅读次数:0
Maven Resources Compiler: Maven project configuration required for module 'XX(项目名)' isn't available.
一、报错信息 Error:Maven Resources Compiler: Maven project configuration required for module 'XX(项目名)' isn't available. Compilation of Maven projects is sup ...
分类:其他好文   时间:2021-06-02 12:26:11    阅读次数:0
判断手机端和pc端
//判断pc和手机 browserRedirect() { var sUserAgent = navigator.userAgent.toLowerCase(); if (/ipad|iphone|midp|rv:1.2.3.4|ucweb|android|windows ce|windows mo ...
分类:移动开发   时间:2021-05-25 18:31:07    阅读次数:0
10494条   上一页 1 2 3 4 5 6 ... 1050 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!