极兔速递-Java社招

本人双非23年毕业,正式工作两年经验,在4月初才开始找工作,时间太晚了

写写面经攒攒人品,希望后面有offer

4.11 线上视频一面

0、自我介绍+项目介绍

1、围绕项目问问题

2、Seata中事务一致性问题,不用Seata应该怎么做

3、RabbitMQ使用场景,幂等问题

4、线程池核心参数设计、为什么这样设计,分布式架构下使用多线程导致MySQL问题

5、Redis数据结构以及使用场景,redission锁机制与看门狗机制,Redis集群架构

6、MySQL索引结构以及SQL优化思路

7、线上GC调优过程,G1与CMS区别

8、Spring的Bean的生命周期(拓展说了一下Spring启动流程),问了一下Spring中Bean启动过程中一个简单问题

9、还有一些记不清了...

10、反问

面试体验:面试官挺好的,给了很多建议

4.21 一面通过,线上测评

4.22 测评未通过,感谢信

#测评##社招#
全部评论
佬 之前在多溢吗
2 回复 分享
发布于 2025-04-23 14:45 陕西
1 回复 分享
发布于 2025-04-23 14:31 贵州
测评没过怎么知道的,感谢信这么写的吗?
点赞 回复 分享
发布于 2025-11-23 01:22 陕西
这个测评 真的逆天 我也是测评没过。。。
点赞 回复 分享
发布于 2025-04-25 16:04 浙江

相关推荐

大致就是完善一个购物车,结算购物车金额的题,极其简单,但是我测试用例只过了50%代码如下,哪个大佬能帮忙看看问题import java.math.BigDecimal;import java.math.RoundingMode;import java.util.*;class Solution {// 购物车集合public Map<Product, Integer> cart;public Solution() {cart = new HashMap<>();}public void addProductToCart(Product product, int quantity) {cart.put(product,cart.getOrDefault(product,0)+quantity);}public void removeProduct(Product product) {cart.remove(product);}public String getTotalAmount() {BigDecimal amount =BigDecimal.ZERO;for (Map.Entry<Product, Integer> entry : cart.entrySet()) {String price = entry.getKey().getPrice();Integer quantity = entry.getValue();BigDecimal priceVal = new BigDecimal(price);BigDecimal temp = priceVal.multiply(new BigDecimal(quantity)).setScale(2,RoundingMode.HALF_UP);amount = amount.add(temp);}String totalamount = String.valueOf(amount);return totalamount;}}class Product {private String id;private String name;private String price;public Product(String id, String name, String price) {this.id = id;this.name = name;this.price = price;}public String getId() {return id;}public String getName() {return name;}public String getPrice() {return price;}public static void main(String[] args) {Product product=new Product("1","测试","2");Product product2=new Product("2","测试","2");Solution solution=new Solution();solution.addProductToCart(product,5);solution.addProductToCart(product,2);solution.addProductToCart(product2,1);System.out.println(solution.cart);System.out.println(solution.getTotalAmount());}}
点赞 评论 收藏
分享
评论
6
23
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务