摘要:
找到idea安装目录的bin目录,搜索vmoptions可以看到两个文件,idea.exe.vmoptions idea64.exe.vmoptions1这两个文件就是IDEA的一些配置文件,带64位的对应64位的启动器,不带的对应32位,默认启动的是32位,你使用的是哪一个启动器就改哪一个,最好是两个一起都修改下(推荐)。修改两个文件中这一项,将Xmx设置为小一点,就可以解决IDEA闪退的... 阅读全文
摘要:
关键字方法命名sql where字句AndfindByNameAndPwdwhere name= ? and pwd =?OrfindByNameOrSexwhere name= ? or sex=?Is,EqualsfindById,findByIdEqualswhere id= ?BetweenfindByIdBetweenwhere id between ? and ?LessThanfin... 阅读全文
摘要:
原文地址:https://blog.csdn.net/earthhour/article/details/79271816实体类字段定义:private String sku_no;dao中接口名定义:Goods findBySkuNo(String skuNo);spring-data按照接口方法定义的名字(默认认为是驼峰写法)skuNo去实体类查找对应字段,当找不到时,就报错了:org.spr... 阅读全文
摘要:
配置sqlServer的依赖 com.microsoft.sqlserver sqljdbc4 4.0 注意:从maven私服下载jar包失败,为了简便使用,可以先下载sqljdbc4.jar,然后用命令行切换到jar包所在路径,执行mvn install:install-file -Dfile=sql... 阅读全文