我也遇到了大神们说的问题,我是用window + ecliopse 做的, jdbc.properties 里面 username 不能用这个名字,我这里出现如下错误,换个名字就好了。
///////////////////////////////
java.sql.SQLException: Access denied for user 'Administrator'@'localhost' (using password: YES)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:998)
///////////////////////////////
java.sql.SQLException: Access denied for user 'Administrator'@'localhost' (using password: YES)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:998)
2016-07-30
Invocation of init method failed; nested exception is org.apache.ibatis.builder.BuilderException: Error creating document instance. Cause: org.xml.sax.SAXParseException; lineNumber: 5; columnNumber: 18; 文档根元素 "configuration" 必须匹配 DOCTYPE 根 "mapper"。
2016-07-27
我创建seckill表出错了,syntax error,unexpected TEXT_STRING,expecting CHECK_SYM OR FOREIGN OR PRIMARY_SYM OR UNIQUE_SYM.求大神指点一下
2016-07-25
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
</beans>
http://www.springframework.org/schema/beans/spring-beans.xsd">
</beans>
2016-07-24
关于本集中maven依赖的简化写法:老师写了一大群spring依赖,但这里面是可以省略很多不用写的,因为有些包已经把spring做为默认依赖,这里面可以省略的依赖有:spring-core;spring-beans(上面这两个spring-context会自动依赖);spring-context,spring-jdbc(mybatis-spring会依赖);spring-web(spring-webmvc会依赖);logback-core(logback-classic会依赖).
如此一来,可以省略一半的配置依赖代码!
如此一来,可以省略一半的配置依赖代码!
2016-07-23