报错Failed to install the following SDK components: platforms;android-29 Android SDK Platform 29 解决方法: 更新licenses,然后重新build即可 cd /Users/tmh/Library/Andr ...
分类:
移动开发 时间:
2020-11-18 12:25:18
阅读次数:
26
问题: 升级新版flutter遇到android运行报错,如下图 解决方案: dependencies { // CameraX core library using the camera2 implementation def camerax_version = "1.0.0-beta11" // ...
分类:
移动开发 时间:
2020-11-17 12:38:11
阅读次数:
24
1.在pom.xml文件中,引入依赖(jar包) <dependencies> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.48</version> ...
分类:
其他好文 时间:
2020-11-17 12:16:01
阅读次数:
5
1.1现象 有个DBA朋友遇到需要分析性能问题,发现DB没有AWR快照??? 观察MMON进程正常,手工创建SNAP 报错 1.2 处理 参考 https://community.oracle.com/tech/apps-infra/discussion/342662/manual-snapshot ...
分类:
其他好文 时间:
2020-11-16 13:43:56
阅读次数:
9
1. 如果是在构造方式中循环依赖,则直接报错 @Component public class A { public A(B b) { } } @Component public class B { public B(A a) { } } Description: The dependencies o ...
分类:
编程语言 时间:
2020-11-07 17:35:45
阅读次数:
30
一、问题 升级java11后,maven命令打包报错: mvn clean package -Dmaven.test.skip=true [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8 ...
分类:
编程语言 时间:
2020-11-06 01:37:38
阅读次数:
23
[root@localhost ~]# virsh undefine vhuser-test1error: Failed to undefine domain vhuser-test1error: Requested operation is not valid: cannot undefine d ...
分类:
其他好文 时间:
2020-11-04 19:04:17
阅读次数:
16
Spring 简介 spring是轻量级、非入侵式的框架 控制反转(IOC) 面向切面编程(AOP) 支持事务的处理、对框架整合的支持 Spring就是轻量级的控制反转(IOC) 面向切面编程(AOP)的框架 Maven包 <dependencies> <dependency> <!-- sprin ...
分类:
编程语言 时间:
2020-11-04 18:28:43
阅读次数:
20
在树莓派上运行自己的程序的时候报了错误 Can't open /dev/mem: Permission denied RuntimeError: ws2811_init failed with code -5 (mmap() failed) ,看了网上好像没有什么解决办法,分享一个自己的 在命令行下 ...
分类:
其他好文 时间:
2020-11-04 18:20:31
阅读次数:
21
1. 前言 为了更好分析ApplicationMater启动过程,本篇博客在前言部分将简要介绍一下yarn中重要的两个基础库:服务库和事件库,然后在此基础上,着重分析ApplicationMater的启动过程。 本文基于Yarn 3.2版本,文章较长,谨慎阅读,若是文中有误欢迎留言指出。 1.1. ...
分类:
移动开发 时间:
2020-10-29 10:47:18
阅读次数:
34