MapperFacade自动导入失败 添加以下代码并且保证项目可以扫描到: @Configuration public class OrikaConfig { @Bean public MapperFactory mapperFactory() { return new DefaultMapperFactory.Builder().build(); } @Bean public MapperFacade mapperFacade() { return mapperFactory().getMap
1:环境是android studio 在AVD中启动显示,提示当前电脑为安装HAXM emulator: ERROR: x86 emulation currently requires hardware acceleration!Please ensure Intel HAXM is properly installed and usable.CPU acceleration status: HAX kernel module is not installed!2:在android studi
问题1 故障现象: Wed Jan :: [DiM][I]: New VM state is ACTIVE. Wed Jan :: [LCM][I]: New VM state is PROLOG. Wed Jan :: [VM][I]: Virtual Machine has no context Wed Jan :: [TM][I]: clone: Cloning ../..//761d969382aefd016b88d2dd3a347d4d in ezcloudmaster:/srv/cl
今天有同事用到了约束布局,但是导入我的工程出现错误 **提示错误: Could not find com.Android.support.constraint:constraint-layout:1.0.0-alpha3** 我网上查了一下资料,都说是因为我的androidStudio版本是最新的稳定版导入这个包就会报这个错误,必须是预测版才行,后面经过研究测试,其实根本就不是这样的,是你的androidStudio 要安装插件才可以运行这个包. 下面把详细步骤说一下: a. 点击Tools>a
解决: 首先登陆虚拟机的MySQL use mysql; select host,user from user; 可以看到,默认的mysql只允许本机访问 将host设置为通配符模式%,Host设置为"%"便可远程访问了,然后执行flush privileges使更改的配置立即生效 update user set host = '%' where user = 'root'; flush privileges;