摘要: https://blog.csdn.net/chengqiuming/article/details/82528961 阅读全文
posted @ 2020-04-08 10:24 两小无猜 阅读(705) 评论(0) 推荐(0) 编辑
摘要: 1.新建一个Cart类 2.添加注解 后面添加get、set方法和toString方法 3.创建实体类的CartRepository接口 接口继承JpaRepository 接口默认实现了增删改查等一些简单的操作,其他操作可以参考 "Spring Data JPA根据属性名查询" 在接口类中直接创建 阅读全文
posted @ 2020-04-07 21:23 两小无猜 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 连接前需要先配置一下服务器端的数据库 进入mysql数据库,选择mysql 选择 host 表 更新 host, 然后退出。 重启数据库, 完成。 阅读全文
posted @ 2020-04-07 20:47 两小无猜 阅读(556) 评论(0) 推荐(0) 编辑
摘要: 运行git搞崩掉了重新创建。。。 1.新建SpringBoot项目 应该就这些 2. 使用的框架: 1. 数据库:Spring Date JPA 2. Service+Dao+Controller 3. OKHttpClient连接服务器 4. GSON作为数据格式 结构 AddressContro 阅读全文
posted @ 2020-04-07 20:43 两小无猜 阅读(168) 评论(0) 推荐(0) 编辑
摘要: MySQL支持的一种插入多行数据的INSERT语句写法是 INSERT INTO 表名 (字段名1,字段名2,字段名3) VALUES (值1,值2,值3,...),(值1,值2,值3,...)... 对应的接口方法 //给News插入多条类别 public int addMoreNewsTypeB 阅读全文
posted @ 2020-04-05 10:53 两小无猜 阅读(554) 评论(0) 推荐(0) 编辑
摘要: mybatis通过定义前缀后缀和分割字符来拼接sql语句,实现动态插入的功能 <insert id="addNewsTypeByNewsId"> insert into news_newstype <trim prefix="(" suffix=")" suffixOverrides=","> <i 阅读全文
posted @ 2020-04-05 10:30 两小无猜 阅读(2949) 评论(0) 推荐(0) 编辑
摘要: log4j:WARN No appenders could be found for logger (org.apache.ibatis.logging.LogFactory). log4j:WARN Please initialize the log4j system properly. 缺少lo 阅读全文
posted @ 2020-04-04 21:24 两小无猜 阅读(160) 评论(0) 推荐(0) 编辑
摘要: SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in [jar:file:/F:/Spring%20project/mybatis_demo/libs/slf4j-jdk14-1.7.29.jar!/o 阅读全文
posted @ 2020-04-04 21:22 两小无猜 阅读(194) 评论(0) 推荐(0) 编辑
摘要: Mybatis 添加@Param(“”)注释就可以了 阅读全文
posted @ 2020-04-04 21:06 两小无猜 阅读(150) 评论(0) 推荐(0) 编辑
摘要: Spring集成CXF发布WebService 1.导入jar包 因为官方下载的包里面有其他版本的sprring包,全导入会产生版本冲突,所以去掉spring的部分,然后在项目根目录下新建了一个CXF_lib目录,保存jar包。 2.编写PianoInterface接口 新建一个PianoInter 阅读全文
posted @ 2020-04-04 18:44 两小无猜 阅读(390) 评论(0) 推荐(0) 编辑