java
起名伤脑
这个作者很懒,什么都没留下…
展开
-
springboot整合shiro问题
启动springboot出现No bean of type 'org.apache.shiro.realm.Realm' found.原创 2022-08-12 11:06:16 · 7300 阅读 · 2 评论 -
Invalid bound statement (not found): com.gdata.biz.content.mapper.xxxMapper.接口名(其中一种引起此错误的原因)
原因之一:找不到这个xxxMapper接口对应的xxxMapper.xml文件解决方法:在pom.xml添加:(添加之后要刷新maven) <build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.xml</include> .原创 2021-04-22 14:26:40 · 217 阅读 · 0 评论 -
StringUtils.hasText(String str)用法
源代码: public static boolean hasText(@Nullable CharSequence str) { return (str != null && str.length() > 0 && containsText(str)); } //字符串不为null,str.isEmpty非true即false 三者都为true返回true否则返回false public static boolean hasText(@.原创 2021-08-05 15:49:30 · 4226 阅读 · 7 评论 -
【已解决替代Google英文网页翻译】英文网页翻译成中文(不用额外的插件解决方法)
Google浏览器点击右上方三个小圆点找到设置选项进去下拉看到如图:高级选项,点击展开会看到如图:语言选项添加语言中不能有英文的存在,如上图中文就可以了。然后我们访问一个网址:举例访问MySQL官网它会弹出一个窗口进行翻译切换。到此就大功告成了!!!就是这么简单!!!...原创 2021-07-24 16:47:30 · 2360 阅读 · 0 评论 -
Failed to configure ‘url‘ attribute is not specified and no embedded datasource could be configured.
遇到一个奇怪问题:新拉的项目启动报错:Consider the following: If you want an embedded database (H2, HSQL or Derby), please put it on the classpath. If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are ...原创 2021-07-23 15:59:37 · 325 阅读 · 1 评论 -
idea导入springboot项目,没有自行下载maven依赖(右侧栏没有maven project)
ctrl+shift+A 输入maven 选择 add maven projects 选择项目中的pom文件 即可出现来自:https://www.cnblogs.com/Juff-code/p/13390356.html原创 2021-06-02 16:17:51 · 1192 阅读 · 0 评论 -
springboot项目启动redis报错Could not get a resource from the pool; nested exception is io.lettuce.core.
解决方法:找到你的redis安装路径:启动redis-server.exe启动成功后:从新启动项目解决。原创 2021-05-13 10:02:48 · 10198 阅读 · 0 评论 -
获取map集合最大的value值key值对应的key和value或最小value值key值对应的key和value应用案例
题目:数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。例如输入一个长度为9的数组{1,2,3,2,2,2,5,4,2}。由于数字2在数组中出现了5次,超过数组长度的一半,因此输出2。如果不存在则输出0。案例:其中涉及求map中最大value,最小value,最大key,最小key int[] arr = new int[]{1,1,1,1,1,2,1,4,5,5,6}; HashMap<Integer, Integer> map ...原创 2021-04-20 13:51:42 · 4939 阅读 · 0 评论