博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring学习遇到问题
阅读量:6009 次
发布时间:2019-06-20

本文共 1302 字,大约阅读时间需要 4 分钟。

1:Could not autowire field

    在执行函数之间添加定位标记语句,定位为jdbctemplate.query的错误,后来将其修改为select * from admin得以解决;

2:The processing instruction target matching "[xX][mM][lL]" is not allowed.

   这是由于文件格式引起的错误,而且很多情况下是文件头出现了错误,自己修改了下,还是出现错误,于是将老师给的代码中的配置头文件copy过来,即ok了~~

   

  <?xml version="1.0" encoding="UTF-8"?>

  <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context" xmlns:util="http://www.springframework.org/schema/util"
    xmlns:aop = "http://www.springframework.org/schema/aop" xmlns:tx = "http://www.springframework.org/schema/tx"
    xsi:schemaLocation="
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
    http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd
    http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
    http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
  ">

转载于:https://www.cnblogs.com/qrrlinux/archive/2013/06/06/3122645.html

你可能感兴趣的文章
centos为用户增加ssh key
查看>>
Quantum Bogo sort浅谈
查看>>
【Java】Socket+多线程实现控制台聊天室
查看>>
CAD注记层转到SDE Annotation Features(ArcEngine,C++实现)(转载)
查看>>
easyui datagrid 列的内容超出所定义的列宽时,自动换行
查看>>
【USACO 2.3】Controlling Companies (递推)
查看>>
ABP文档 - 审计日志
查看>>
前端Html和Css面试题
查看>>
spring可以get到bean,注入却为空
查看>>
Nginx+PHP-FPM优化技巧总结
查看>>
python易错盲点排查之+=与+的区别分析以及一些赋值运算踩过的坑
查看>>
RFID应用范围
查看>>
智力杠杆
查看>>
解决IE6-IE8 Js代码不执行问题
查看>>
iOS9横竖屏设置的处理方法
查看>>
View坐标系详解(getTop(),getLeft(),getX(),getY(),getLocationOnScreen(), getLocationInWindow())
查看>>
学习ASP.NET Core Razor 编程系列三——创建数据表及创建项目基本页面
查看>>
golang编译库文件方式
查看>>
一道笔试题:捞鱼问题
查看>>
SUSE的SSHD配置及设置防火墙
查看>>