最新回答 / 慕尼黑1392957
铁子。看看你的mybatis-config.xml
<mappers> <mapper resource="mapper/SeckillDao.xml"/> </mappers>这个删掉。和spring-dao 的配置重复了
2017-04-18
【新人注意】mvn archetype:generate -DgroupId=org.seckill -DartufactId=seckill -DarchetypeArtifactId=maven-archetype-webapp
2017-04-17
这是一个eclipse创建maven工程的全过程
http://blog.csdn.net/u012660464/article/details/53199439
在这里说一句,工具没有好坏,只有适合与否
http://blog.csdn.net/u012660464/article/details/53199439
在这里说一句,工具没有好坏,只有适合与否
2017-04-17
添加一条xmlns
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation里增加两条
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.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-3.0.xsd
2017-04-15
xmlns:context="http://www.springframework.org/schema/context"
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
2017-04-15
从github上面下载的seckill源码
spring-dao.xml文件配置数据库连接池的时候忘记加载驱动了,添加下句
<property name="driverClassName" value="${jdbc_driver}" />
spring-dao.xml文件配置数据库连接池的时候忘记加载驱动了,添加下句
<property name="driverClassName" value="${jdbc_driver}" />
2017-04-14
MySql课程里面说,AUTO_INCREMENT不能单独使用,这个关键字只能和PRIMARY KEY一起使用,难道我看了假mysql视频。。。
2017-04-14
给写pom.xml没有提示的朋友一个网站
http://www.mvnrepository.com/
搜老师pom.xml中<artifactId>值,点击进去有该jar包的<dependency>配置,copy就行了。
http://www.mvnrepository.com/
搜老师pom.xml中<artifactId>值,点击进去有该jar包的<dependency>配置,copy就行了。
2017-04-14
补充一下:username导致c3p0连不上的问题看可以通过在<context:property-placeholder location="classpath:jdbc.properties"/>添加属性system-properties-mode --><context:property-placeholder location="classpath:jdbc.properties" system-properties-mode="NEVER"/>,该属性默认为ENVIRONMENT,所以取到的值是环境变量中的username而不是properties中的username
2017-04-14