- 博客(5)
- 收藏
- 关注
原创 JavaWeb依赖
<dependencies> <!-- https://mvnrepository.com/artifact/junit/junit --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2&l...
2021-07-20 14:54:57 95
原创 Spring创建对象有参与无参两种方式
编写一个hello类 package com.ming.pojo; public class Hello { private String string; public String getString() { return string; } public Hello() { } public Hello(String string) { this.string = string; } publi
2021-07-19 20:30:24 170
原创 Mybatis中的resultMap结果集映射
当数据库字段与实体类属性不同名时,可以用resultMap来实现结果集映射 <resultMap id="UserMap" type="User"> <result column="id" property="id"/> <result column="name" property="name"/> <result column="pwd" property="password"/> </resultM
2021-07-19 07:48:10 93
原创 properties的三种配置
第一种:编写db.properties driver=com.mysql.jdbc.Driver url=jdbc:mysql://localhost:3306/cams?useSSL=true&useUnicode=true&characterEncoding=UTF-8 username=root password=123456 然后在<dataSource type="POOLED"></dataSource>之间插入下列代码 <dataSour
2021-07-18 21:18:56 565
原创 Maven中的settings文件配置
在56行输入下列代码,路径为自己创建的Maven仓库路径 <localRepository>e:\Maven\apache-maven-3.8.1-bin\apache-maven-3.8.1\maven-repo</localRepository> 在<mirrors></mirrors>中间插入下列代码段 <mirror> <id>alimaven</id> <mirrorOf>*&
2021-07-18 20:23:29 246
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人