spring问题
少年站起来
这个作者很懒,什么都没留下…
展开
-
java.lang.IllegalArgumentException: Pointcut is not well-formed
Initialization of bean failed; nested exception is java.lang.IllegalArgumentException: Pointcut is not well-formed: expecting 'name pattern' at character position 41execution(*com.test.spring.dao.Aop...原创 2019-01-17 14:41:48 · 1397 阅读 · 1 评论 -
spring-mybatis整合:NoSuchBeanDefinitionException: No bean named 'xxx.class' available
按类型获取bean时,不加双引号。原创 2019-01-19 08:21:28 · 1658 阅读 · 0 评论 -
org.apache.ibatis.binding.BindingException: Parameter 'XXXX' not found.的问题解决办法
DAO层接口:List<CarSchool> getCarSchoolList(int id,String name);通常dao层接口函数的函数为多个时,使用@param, service层就不用写了List<CarSchool> getCarSchoolList(@param("id")int id,@param("name")String name);...原创 2019-01-19 21:58:38 · 11530 阅读 · 0 评论 -
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)问题
rg.apache.ibatis.binding.BindingException: Invalid bound statement (not found)问题,通常问题出在mybatis中dao接口与mapper配置文件在做映射绑定的时候出现问题,简单说,就是接口与xml要么是找不到,要么是找到了却匹配不到。问题常见于:情况一 :mapper的namespace名没有和DAO全路径一...原创 2019-01-19 22:16:44 · 263 阅读 · 0 评论 -
FileNotFoundException: Could not open ServletContext resource [/jdbc.properties]
在搭建ssm框架时,报如下错误:FileNotFoundException: Could not open ServletContext resource [/jdbc.properties]springmvc的配置文件中修改为:<context:property-placeholder location="classpath:/jdbc.properties"/>...原创 2019-02-02 13:20:08 · 515 阅读 · 0 评论 -
org.apache.tomcat.util.bcel.classfile.ClassFormatException: Invalid byte tag in constant pool问题解决方案
tomcat版本的问题,升级tomcat版本。原创 2019-02-16 19:03:05 · 1301 阅读 · 0 评论 -
请求地址没问题,但报400
总结:前端参数与后台参数数据类型不一致导致。详见下:实体类中:private Integer gameId;controller:gameId又作为参数 为了将前端传过来的参数直接封装进实体类,前端参数名需要与参数命名保持一致,但前端传过来的参数都是String类型。故报400,解决可以将pojo中属性命名为String即可。...原创 2019-02-18 22:40:11 · 882 阅读 · 0 评论 -
依赖版本问题导致springboot启动报错
spring boot启动报错***************************APPLICATION FAILED TO START***************************Description:An attempt was made to call the method org.springframework.data.repository.config.Rep...原创 2019-07-30 20:57:40 · 1004 阅读 · 0 评论