已采納回答 / lsgggg123
不是用maven命令,是用maven acchetype,這是專門用來創建項目模板的(就像用ide創建項目的時候也提供一些模板項目,適應各種場景的),用它節省點時間,實際上沒有任何區別,不要糾結這個。
2016-05-15
已采納回答 / 玩轉IT
工程右鍵-》屬性-》Java構建路徑-》庫-》雙擊-》執行環境-》選擇合適的。 ? ?如何選擇合適的?查看自己的jdk版本--->打開cmd ?輸入java -version ?查看 ?選擇?
2016-05-14
已采納回答 / sycdesign
http://codepub.cn/2015/12/09/IntelliJ-IDEA-in-Maven-plugin-could-not-update-the-index-of-the-solution/ 看看這篇文章
2016-05-14
已采納回答 / Terminalist
jdbc.driverClassName=com.mysql.jdbc.Driverjdbc.url=jdbc:mysql://localhost:3306/seckill?useUnicode=true&characterEncoding=utf8jdbc.username=rootjdbc.password=708242寫成這樣!
2016-05-13
最贊回答 / 瘋箏萌萌
把db.properties里username換個名字,如user?;蛘遱pring-dao.xml的http://www.springframework.org/schema/context/spring-context.xsd 改為http://www.springframework.org/schema/context/spring-context-3.0.xsd
2016-05-12
已采納回答 / 慕圣0177899
看下你的maven的版本試試mvn archetype:generate -DarchetypeCatalog=internal -DgroupId=com.seckill -DartifactId=seckill -DarchetypeArtifactId=maven-archetype-webapp
2016-05-09
已采納回答 / 慕圣0177899
--數據庫初始化腳本--創建數據庫CREATE DATABASE seckilluse seckill--創建秒殺庫存表CREATE TABLE seckill(seckill_id bigint NOT NULL AUTO_INCREMENT COMMENT '商品庫存id',name varchar(120) NOT NULL COMMENT '商品名稱',number int NOT NULL COMMENT '庫存數量',start_time timestamp NOT NULL COMMENT ...
2016-05-06