Error creating bean with name 'girlController': Unsatisfied dependency expressed through field 'girlRepository';为什么会出现这样的问题
2018-03-15
已采纳回答 / Frank作家
那就自己创建一个 手动创建本地仓库的存放路径,例如:D:\Java\m2\repository;在windows的环境变量中增加了新的用户变量M2_REPO,其对应的值为D:\Java\m2\repository(Maven仓库的本地存放路径),同时把这个变量增加到path变量中;修改Maven安装目录下的 conf/文件夹内的setting.xml文件,新增一行:<localRepository>D:\Java\m2\repository</localRepository>(表示...
2018-03-14
@PathVariable("id")
@RequestParam(value="id", required=false,defaultValue="0")
@RequestParam(value="id", required=false,defaultValue="0")
2018-03-14
根据不同环境来启动项目
java -jar xxx.jar --spring.profiles.active=prod (生产环境)
java -jar xxx.jar --spring.profiles.active=dev (开发环境)
java -jar xxx.jar --spring.profiles.active=prod (生产环境)
java -jar xxx.jar --spring.profiles.active=dev (开发环境)
2018-03-14
spring-boot的三种启动方式
1、 直接运行SpringbootApplication.java
2、在项目目录下运行mvn spring-boot:run
3、先编译项目mvn install 然后 在target下运行 java -jar xxx.jar
1、 直接运行SpringbootApplication.java
2、在项目目录下运行mvn spring-boot:run
3、先编译项目mvn install 然后 在target下运行 java -jar xxx.jar
2018-03-14
最赞回答 / 慕仙5377510
spring.jpa.hibernate.naming.physical-strategy: org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategyspring.jpa.database-platform: org.hibernate.dialect.MySQL5InnoDBDialect加入配置后,事务还是不起任何作用
2018-03-14
最新回答 / qq_第一眼的错觉_0
出现这种问题
com.xie.boy; javax.persistence.; javax.persistence.; javax.persistence.; javax.persistence.; (name=) Boy{ Integer ; String ; Integer ;你看看
你是不是导入了import org.springframework.d...
2018-03-14