这是我手敲出来的,运行结果正常,如果你出现了异常,找一下自己的代码有没有问题,我使用的是IDEA编译器,放在Github上面供大家参考。地址:https://github.com/toheng/seckill
2018-04-12
数据库连接出问题的话,记得把jdbc.properties中的username="root"改成user="root"。因为spring 中在取${username}中默认会取到你目前电脑的用户名,而不是数据库用户名,所以只需要将username改为user,然后取${user}就没问题了,希望对大家有帮助。
2018-04-12
最赞回答 / 窗下有梧桐
数据库连接出问题的话,记得把jdbc.properties中的username="root"改成user="root"。因为spring
中在取${username}中默认会取到你目前电脑的用户名,而不是数据库用户名,所以只需要将username改为user,然后取${user}就没问题了
2018-04-11
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''seckill_id' bigint NOT NULL AUTO_INCREMENT COMMENT '商品库存id',
'name' VA' at line 2 哪儿的错啊 看了 和老师一模一样 用的是MySQL 5.7.19
错误原因,把单引号去了就行了,有些版本的列名不能加单引号
'name' VA' at line 2 哪儿的错啊 看了 和老师一模一样 用的是MySQL 5.7.19
错误原因,把单引号去了就行了,有些版本的列名不能加单引号
2018-04-11
使用mybatis可以使用 我开发的intellij下的mybatis插件 能极大提升效率
https://github.com/gejun123456/MyBatisCodeHelper-Pro
java类和xml文件的互相跳转,xml文件的自动补全这些功能都是免费的。
特有的一键通过方法名生成sql 简单的查询都可以自动生成,大幅提升效率
https://github.com/gejun123456/MyBatisCodeHelper-Pro
java类和xml文件的互相跳转,xml文件的自动补全这些功能都是免费的。
特有的一键通过方法名生成sql 简单的查询都可以自动生成,大幅提升效率
2018-03-28
链接不上数据库的看这里: <context:property-placeholder location="classpath:jdbc.properties" system-properties-mode="FALLBACK"/>
2018-03-27
<beans xmlns="http://www.springframework.org/schema/beans"
增加 xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
增加 http://www.springframework.org/schema/context
增加 http://www.springframework.org/schema/context/spring-context.xsd">
增加 xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
增加 http://www.springframework.org/schema/context
增加 http://www.springframework.org/schema/context/spring-context.xsd">
2018-03-26