常见问题及解决

常见错误:

转载于:https://www.jianshu.com/p/897cc2226fb0


1.Test is not an annotation type
描述:在使用junit进行单元测试时,在方法前声明@Test时显示Test is not an annotation type错误
原因:此类或其他类中有名为Test的类,加载@Test时不能加载到junit中的test单元,而是调用了相同的类名
解决办法:查看名为Test的类,将其改名不与junit中的Test冲突即可

2.****注意:配置文件中的jdbc.username,如果写成username,可能会与系统环境中的username变量冲突,所以到时候真正连接数据库的时候,用户名就被替换成系统中的用户名(有得可能是administrator),那肯定是连接不成功的

3.Could not find resource ...UserMapper.xml
原因:mybatis-config中加载mappers时路径出错
解决办法:修改路径或批量加载

4.unsupported major.minor version 51.0
原因:jdk版本太低
解决办法:换成jdk1.8即可

5.注意:使用@Override注解时,jdk和maven版本必须都高于1.5版本,否则无法使用此注解

6.java.lang.ClassNotFoundException:${jdbc.driver}:
原因:<context:property-placeholder location="classpath*:jdbc.properties"/>未载入属性,因为在spring里使用org.mybatis.spring.mapper.MapperScannerConfigurer 进行自动扫描的时候,设置了sqlSessionFactory 的话,可能会导致PropertyPlaceholderConfigurer失效,也就是用${jdbc.username}这样之类的表达式,将无法获取到properties文件里的内容。 导致这一原因是因为,MapperScannerConigurer实际是在解析加载bean定义阶段的,这个时候要是设置sqlSessionFactory的话,会导致提前初始化一些类,这个时候,PropertyPlaceholderConfigurer还没来得及替换定义中的变量,导致把表达式当作字符串复制了。 但如果不设置sqlSessionFactory 属性的话,就必须要保证sessionFactory在spring中名称一定要是sqlSessionFactory ,否则就无法自动注入。又或者直接定义 MapperFactoryBean ,再或者放弃自动代理接口方式。
解决办法:将<property name="sqlSessionFactory" ref="sqlSessionFactory" />换成
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />

7.Several ports (8005, 8080, 8009) required by Tomcat v6.0 Server at localhost are already in use. The server may already be running in another process, or a system process may be using the port. To start this server you will need to stop the other process or change the port number(s).
shutdown.bat

8.无法加载,无法读取配置文件时,有可能是系统缓存未清除,可以尝试clean,重启

9.jsp页面无法使用外部静态资源,使用不了外部样式
原因:
解决办法:
<mvc:resources location="/css/" mapping="/css/*"/>

10.org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [com.asiainfo.pojo.User] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}

11.查询数据库信息时显示nullpointerexception:
原因:可能是resultType和查询结果不对应
解决办法:设置别名

12.打开Eclipse提示“The default workspace “xxxx” is in use or cannot be created Please choose a different one“
原因:出现这种情况一般是workspace的配置文件中出现了.lock文件(workspace/.metadata/.lock),锁定了workspace。把.lock文件删除即可。
如果该文件不能删除,可能是因为javaw.exe进程未结束,结束该进程及eclipse.exe进程即可删除。

正常情况下,如果你打开了一个workspace,在想打开另一个workspace也会出现上面的提示

13.错误: 找不到或无法加载主类:
1)可能是找不到.jar包
解决办法:build path,导入或直接删除包即可
2)jar包冲突
解决办法:删除pom.xml新添加的依赖,或者新添加的jar包
3)project->clean重新构建class

14、UnsupportedClassVersionError:
Unsupported major.minor version 51.0
jre版本不一致问题
解决办法:
jre右键->properties->选择对应jdk版本即可

15、JSP中使用include指令出现“Duplicate local variable basePath”错误提示后的发现
解决办法:将不同页面中basePath改为不同变量名即可

16、springboot集成redis缓存时,引入redis依赖就报错,项目启动不了
原因:依赖冲突,仓库中已经有了spring-data-redis依赖(非自己引入,原本就有),再引入spring-boot-starter-redis依赖就会与原来的冲突,导致项目报错,出现找不到或无法加载主类、找不到对应类、class字节码文件丢失等原因
解决办法:找到仓库原redis依赖,直接删除,引入spring-boot-starter-redis依赖即可

17、springboot集成redis时报错:
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [org.springframework.data.redis.connection.RedisConnectionFactory] found for dependency
原因:没有JedisConnectionFactory 工厂bean
解决办法:config配置类中加入:
@Bean
public JedisConnectionFactory jedisConnectionFactory() {
return new JedisConnectionFactory();
}

18、springboot集成redis从数据库中读取不到数据,显示空指针错误
原因:可能是先已经缓存了对应为空的数据,然后查询数据是直接从缓存中读取,所以读取到null
解决办法:删除缓存数据,或更新缓存数据即可

19、spring-data-jpa使用报错:user is not mapped
当jpa提供的方法不足以满足业务开发需求时,我们可以自定义查询方式,其中自定义查询又有两种方式:
1)@NamedQuery
@Query(value="select * from t_user u where u.username=?1",nativeQuery=true)
public User findByusername(String username);
2)@Query
@Query("select u from User u where u.password=:password")
public User findByPassword(@Param("password") String password);
注意:第二种查询方式中,User是对应的实体类名,而非数据库表名,如果使用user,就会报错:user is not mapper
解决办法:将user修改为实体类名User即可

20、Name for parameter binding must not be null or empty
解决办法:加上@Param("")注解
List<ShopOrder> getShopOrder(@Param("id") long id);

21、Expected CSRF token not found. Has your session expired 403
<input type="hidden" th:name="${_csrf.parameterName}" th:value="${_csrf.token}" />

22、springboot+springsecurity+thymeleaf创建项目时,访问控制器方法却定位到static静态资源,而且,所有样式都失效
原因:springsecurity安全拦截了静态资源
解决办法:WebSecurityConfig中,重写方法configure
@Override
public void configure(WebSecurity web) throws Exception {
web.ignoring().antMatchers("/css/", "/images/", "/js/**");
}

23、NoSuchBeanDefinitionException: No qualifying bean of type [com.sj.cms.dao.UserDao] found for dependency
原因:springboot整合mybatis时添加@Mapper

24、springboot整合mybatis: Invalid bound statement (not found)
原因:mybatis配置路径错误
解决办法:mybatis:
mapper-locations: classpath:com/sj/vip/mapper/*.xml
type-aliases-package: com.sj.vip.entity

25、springboot整合mybatis 找不到dao或impl
解决办法:dao中加注解@Mapper,如:
@Mapper
public interface UserDao {
User findUserByUserName(String username);
}

26、springboot启动Address already in use: bind
原因:端口被占用
解决办法:启动任务管理器,结束javaw.exe进程

27、第三方应用获取QQ授权时回调显示错误:{"ret":100031,"msg":"app has no privilege to use this api"}
{"ret":100008,"msg":"client request's app is not existed"}
应该是开发者申请审核未通过的问题,待定...

28、ClassNotFoundException: redis.clients.jedis.JedisPoolConfig
原因:可能是版本问题,重启eclipse

29、ajax请求时,点击按钮没反应,原因可能是:
data:{
password: password;
},
password结尾应该是逗号,而非分号
修改为,即可

30、引入net.sf.json maven依赖时,报错:Missing artifact net.sf.json-lib:json-lib:jar:2.4
<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
<version>2.4</version>
</dependency>
解决办法:需要加入:<classifier>jdk15</classifier>
<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
<version>2.4</version>
<classifier>jdk15</classifier>
</dependency>
搞定

31、利用JSONObject将json字符串转为json对象JsonObject时出现:Expected a ',' or '}' at character 37 of ...(一个json字符串)错误
原因:json字符串中必须为双引号,不能为单引号,否则解析异常,如:
String str = "{'ret':100008,'msg':'client request's app is not existed'}";报错!
String str = "{"ret":100008,"msg":"client request's app is not existed"}";正确!

32、错误描述:ajax回调方法返回状态:jqxhr.status总是0,而且明明使用post方式提交数据却变成get方式
原因:在<form></form>表单中,<input type="submit"></input>已经定义了input类型为提交submit,那么此时如果使用ajax异步提交,就会产生冲突,这也就是为什么明明定义$.post方式却url地址栏传递了参数,简言之,当你点击按钮时,首先会因为submit直接提交form表单数据,然后click方法中的ajax post方法就会二次提交数据,这样就导致了status=0的问题
解决办法:直接去掉type="submit"即可

灵感来自:https://stackoverflow.com/questions/14313283/jquery-ajax-jqxhr-status-is-always-0

It is because you are not cancelling the click event of the submit button. You need to do it for both cases, not just the part in the if. Move that line before the if, the code will magically not be zero anymore.

题外话:stackoverflow确实是个很不错的网站,大家有兴趣可以多逛逛,虽然全英文,但是搞it的经常接触就会的多了,看的懂了,学到技术的同时还能练一下English




 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值