Java开发工程师
约 130 字小于 1 分钟
Java开发工程师
岗位年限:
1
面试时间:
2023年12月20日18点50
面试方式:
线上
面试问题:
序号 | 问题 | 解答 | 备注1 |
---|---|---|---|
1 | 项目中用到了那些注解 | @RestController@Autowired@Resource@GetMapping@RequestMapping@PathVirale@MutilePartFile@RequestParam@Service@Mapper | |
2 | xml中用到了那些标 | resultMap,sql,if ,include select update delete set insert foreach | |
3 | 查询出入职最早的用户信息 | select * from employee where create_time = (select max(create_time) from employee); | |
4 | 为什么使用Mybatis | 轻量级的半自动化ORM框架,代替JDBC连接,可移植性高,学习成本低 | |