工程目录
│ .gitignore
│ pom.xml
│
├─.idea
│
├─src
│ ├─main
│ │ ├─java
│ │ │ └─cn
│ │ │ └─cherzing
│ │ │ ├─pojo
│ │ │ │ Employee.java
│ │ │ │
│ │ │ └─util
│ │ │ MybatisUtils.java
│ │ │
│ │ └─resources
│ │ │ db.properties
│ │ │ mybatis-config.xml
│ │ │
│ │ └─mapper
│ │ EmployeeMapper.xml
│ │
│ └─test
│ └─java
│ TestSelect.java
│
└─target
├─classes
│ │ db.properties
│ │ mybatis-config.xml
│ │
│ ├─cn
│ │ └─cherzing
│ │ ├─pojo
│ │ │ Employee.class
│ │ │
│ │ └─util
│ │ MybatisUtils.class
│ │
│ └─mapper
│ EmployeeMapper.xml
│
├─generated-sources
│ └─annotations
├─generated-test-sources
│ └─test-annotations
└─test-classes
TestSelect.class
2024年10月7日大约 1 分钟