码迷,mamicode.com
首页 >  
搜索关键字:config    ( 25045个结果
JavaSpring中的注解
1.(1)@Component (2)@Service (3)@Controller (4)@Repository * 上面四个注解功能是一样的,都可以用来创建 bean 实例 2 @Autowired:根据属性类型进行自动装配 @Qualifier(value = "") 根据名称进行注入 使用的 ...
分类:编程语言   时间:2021-05-24 08:34:40    阅读次数:0
Git 设置代理和取消设置代理
设置 http 代理 socks5 协议代理 git config --global http.proxy 'socks5://127.0.0.1:10808' git config --global https.proxy 'socks5://127.0.0.1:10808' http / htt ...
分类:其他好文   时间:2021-05-24 08:22:53    阅读次数:0
Xshell 无法连接腾讯云服务器 No supported authentication methods available
主要有两个问题: 1.未打开密码登录方式 输入 vi /etc/ssh/sshd_config 找到 PasswordAuthentication 设置为 yes。 记得重启ssh:输入 systemctl restart sshd 2. 没有创建对应的用户 腾讯云默认的用户是lighthouse, ...
分类:系统相关   时间:2021-05-24 08:11:48    阅读次数:0
angular实现图片压缩、裁剪功能
<nz-descriptions-item nzTitle="头像" nzSpan="24"> <nz-upload class="avatar-uploader" nzAction="/baseupload" nzListType="picture-card" [nzShowUploadList] ...
分类:其他好文   时间:2021-05-24 08:08:28    阅读次数:0
解决linux 下gitlab 地址和项目地址不一致问题
1)登陆搭建gitlab的服务器 cd /opt/gitlab/embedded/service/gitlab-rails/config vim gitlab.yml 2) gitlab-ctl restart ...
分类:系统相关   时间:2021-05-24 08:07:40    阅读次数:0
解决gc current request等待事件
异常现象:session一直处于waiting状态,等待事件为gc current request。 异常原因:rac的代码缺陷导致可能出现的BUG,在频繁的insert或者update操作下,导致节点之间锁的状态不同步。彻底修复可以通过打补丁来解决。 临时解决办法: SQL> oradebug s ...
分类:其他好文   时间:2021-05-24 07:53:30    阅读次数:0
vue项目打包成app方法
需要下载HBuildX 软件 步骤1 编译自己的VUE项目 编译项目之前有很重要的步骤不能忘记 将config文件夹里面的index.js中的assetsPublicPath的值修改 为“./” webpack.prod.conf.js 中output添加参数publicPath:’./’在webp ...
分类:移动开发   时间:2021-05-24 07:30:01    阅读次数:0
WCF 已超过传入消息(65536)的最大消息大小配额 解决方案
如是Web程序,则修改客户端Web.config 做如下修改: //注意是客户端 <system.serviceModel> <bindings> <basicHttpBinding> <binding name="ClientSoap" maxBufferSize="2147483647" max ...
分类:其他好文   时间:2021-05-24 06:51:00    阅读次数:0
Ubuntu远程root用户登录
Ubuntu默认不能直接通过root用户远程登录 如xshell登录,密码正确,提示如下: 这是因为在sshd_config中定义了 1、修改配置: vi /etc/ssh/sshd_config 2、通过/输入PermitRootLogin 快速定位到要修改的行 3、将#PermitRootLog ...
分类:系统相关   时间:2021-05-24 06:45:24    阅读次数:0
Spring_17_AOP配置 之 execution表达式
execution表达式 * 在AOP的配置中需要配置切入点,那么就需要配置切入点所需要切入的位置 ,需要通过execution表达式来实现。 <aop:config> <aop:pointcut id="pointcut" expression="execution(* com.shi.servi ...
分类:编程语言   时间:2021-05-24 06:39:46    阅读次数:0
25045条   上一页 1 ... 14 15 16 17 18 ... 2505 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!