JAVA初学
吸花露水的蚊米
这个作者很懒,什么都没留下…
展开
-
2021-06-10
使用java命令运行class文件提示“错误:找不到或无法加载主类“的问题分析参考这篇文章:https://www.cnblogs.com/panchanggui/p/9672216.html转载 2021-06-10 09:48:01 · 83 阅读 · 0 评论 -
变量的动态属性如何表示
假如有一个类Person有两个属性:Name,Sex另一个类 Dog :Name , Weight在前台中用一个变量接收类,但Person 和 Dog都有可能希望能实现程序复用该怎么写?function test(animal,property){ var sth = animal[property];}property就传类相对应的属性即可因为类的属性的表现方式有两种:Person.SexPerson[‘Sex’]...原创 2020-05-18 17:54:15 · 212 阅读 · 0 评论 -
maven build 端口被占用
1.cmd2.运行netstat -ano|findstr 8080,这是找到8080端口被谁占用3.运行taskkill /pid xxxx -t -f,其中xxxx指的是查出的占用端口程序的pid原创 2020-05-05 22:43:35 · 239 阅读 · 0 评论 -
mybatis逆向工程报错:com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException
import逆向工程后生成代码时报错:com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Could not create connection to database server. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nat...原创 2020-04-26 22:17:52 · 319 阅读 · 0 评论 -
Cannot find the declaration of element 'beans'
在我写applicationContext.xml时,报如下错误Description Resource Path Location Type cvc-elt.1: Cannot find the declaration of element 'beans'. applicationContext-service.xml /dubboxdemo-service/src/main/resourc...原创 2020-04-24 17:37:10 · 1736 阅读 · 0 评论 -
maven报错:The container 'Maven Dependencies' references non existing library 'xxxxxxx'
Description Resource Path Location TypeThe container 'Maven Dependencies' references non existing library 'C:\Users\Administrator\.m2\repository\com\alibaba\dubbo\2.8.4\dubbo-2.8.4.jar' dubboxdemo-...原创 2020-04-24 17:13:10 · 6852 阅读 · 0 评论 -
Mybatis 空指针异常
Mybatis 空指针异常错误信息如下:java.lang.NullPointerException at com.txc.mybatis.test.UserMapperTest.testGetUserById(UserMapperTest.java:16) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at...原创 2020-04-07 13:30:50 · 443 阅读 · 0 评论 -
error at ::0 formal unbound in pointcut
error at ::0 formal unbound in pointcut在学习AOP时出现了这种错误java.lang.IllegalStateException: Failed to load ApplicationContext at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDeleg...原创 2019-12-01 09:06:45 · 1216 阅读 · 0 评论