Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exc…

  • Post author:
  • Post category:其他

今天发现一个简单的错误,详细如下: type Exception report message Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceEx…

继续阅读 Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exc…

全局变量和外部变量

  • Post author:
  • Post category:其他

全局变量的作用范围: 从变量定义位置开始到所在文件结束位置. 在C语言中,在function 中定义的变量的作用于仅限于本function,在子函数运行结束后释放内存,若要使用另外一个文件的子函数的中间变量,需在使用这个变量的地方将其申明为外部变量: extern type var; 如果需要使某个文件某个函数的中间变量参与不同文件函数中的运算,则需要在main函数前将其定义为全局变量: type…

继续阅读 全局变量和外部变量

ImportError: cannot import name ‘main’错误解決办法!

  • Post author:
  • Post category:其他

一、使用pip出现: Traceback (most recent call last): File “/usr/bin/pip3”, line 9, in from pip import main ImportError: cannot import name ‘main’ 二、解决方法:输入以下命令重新安装pip。 sudo python3 -m pip uninstall pip &…

继续阅读 ImportError: cannot import name ‘main’错误解決办法!

解决adb无法连接Android真机设备的问题

  • Post author:
  • Post category:其他

问题描述: 数据线连接电脑与手机设备后,开发者选项-USB调试已打开,cmd命令窗口运行adb devices命令没有找到真机设备,如下: 原因解析: 1、手机设备未连接电脑 2、数据线有问题(只支持充电,不支持数据传输) 解决方法: 1、鼠标右键电脑左下角windows图标-设备管理器-便携设备,检查手机真机是否已连接显示,如下: 2、若便携设备中未显示真机设备: 1)USB连接有问题,重新插拔…

继续阅读 解决adb无法连接Android真机设备的问题

mango(二):架构

  • Post author:
  • Post category:其他

项目地址 mango: https://github.com/GoldBaby5511/mango.git mango-client: https://github.com/GoldBaby5511/mango-client.git mango-user-center: https://github.com/GoldBaby5511/mango-user-center.git mango-admi…

继续阅读 mango(二):架构

springboot使用spring定时器

  • Post author:
  • Post category:其他

在spring中使用定时器比较简单。首先在配置文件中加入 @EnableScheduling ,就能够使用注解驱动定时任务的机制,然后可以用过注解 @Scheduled 去配置如何定时。 目录 1.启动类配置(一启动就会开始执行周期任务) 2.定时任务 1.启动类配置(一启动就会开始执行周期任务) package com.lin.scheduledemo; import org.springfra…

继续阅读 springboot使用spring定时器

关于Arraylist的性能优化

  • Post author:
  • Post category:其他

大家一般用容器的时候Arraylist集合用的是最多的,那么当你的容器需要装下比较庞大的数据的时候你有没有想过为了系统性能着想对集合进行优化? 下面用代码来演示: public static void main(String[] args) { List<Integer> list = new ArrayList<>(); long time1 = System.curre…

继续阅读 关于Arraylist的性能优化

字典的运用

  • Post author:
  • Post category:其他

public class userscore { public List<string> grade; //成绩 public List<string> time; //时间 } public Dictionary<string, userscore> DicScore = new Dictionary<string, userscore>(); /…

继续阅读 字典的运用

java对list中map集合中某个字段排序

  • Post author:
  • Post category:java

java对list中map集合中某个字段排序 适用于字符串排序,数字对比不可用,以下示例,当把sort的值改为74,66,142时排序不对看示例2 示例1 List<Map<String, Object>> content = new ArrayList<>(); Map<String, Object> map = new HashMap<&g…

继续阅读 java对list中map集合中某个字段排序

给我初中OIer朋友的tips

  • Post author:
  • Post category:其他

给我初中OIer朋友的tips 前言:有一位初中的小伙伴想打OI(看看别人家的初中,想想自己初中都在干嘛),于是我整理了下面这篇总结资料。 放在最前面:在课堂以外,网络上值得推荐的教材与资料,适合在空闲的时候自学,在准备NOI初期最重要的是多刷题 1、c++基础篇 主要涉及到数组、指针、结构体,可以挑不懂的看,41小节之前的***(名字打码)同学应该都学过了 链接:https://www.bili…

继续阅读 给我初中OIer朋友的tips