摘要:
动态代理 interface People{ void dance(); String eat(String food); void run(); } //创建被代理类 class ManPeople implements People{ @Override public void dance() 阅读全文
摘要:
单机:docker run -d -p 6379:6379 --name redis7 --privileged=true -v /home/app/redis/redis.conf:/etc/redis/redis.conf -v /home/app/redis/data:/data redis: 阅读全文
摘要:
一、新建容器实例docker run -d -p 3306:3306 --privileged=true -v /finnlee/mysql/log:/var/log/mysql -v /finnlee/mysql/data:/var/lib/mysql -v /finnlee/mysql/conf 阅读全文
摘要:
Linux配置网络vi /etc/sysconfig/network-scripts/ifcfg-ens33 (33) ststemctl restart network 安装docker步骤:1.安装yum-utilyum install -y yum-utils2.设置yum源yum-confi 阅读全文
摘要:
一、配置文件加载顺序 application.properties > application.yml > application.yaml 二、读取配置文件数据 方式一: @Value("${server.port}") private String port; 方式二: @Autowired p 阅读全文
摘要:
一、一对一查询 <mapper namespace="com.finnlee.mapper.OrderMapper"> <resultMap id="orderMap" type="com.finnlee.pojo.Order"> <result column="uid" property="use 阅读全文
摘要:
Mapper 接口开发需要遵循以下规范:1、 Mapper.xml文件中的namespace与mapper接口的全限定名相同2、 Mapper接口方法名和Mapper.xml中定义的每个statement的id相同3、 Mapper接口方法的输入参数类型和mapper.xml中定义的每个sql的pa 阅读全文
摘要:
一、核心配置文件常用配置 1、properties标签:该标签可以加载外部的properties文件 <properties resource="jdbc.properties" /> 2.typeAliases标签:设置类型别名 <typeAliases> <typeAlias type="com 阅读全文
摘要:
查询数据: List<User> userList = sqlSession.selectList("userMapper.findAll"); <select id="findAll" resultType="com.itheima.domain.User"> select * from User 阅读全文
摘要:
一、导入坐标 <!--mybatis 坐标 --> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.4.5</version> </dependency> <!--mysq 阅读全文