关于同包不能有同名类

最近做了一个小的java项目,在事件监听这块一直给报:java.lang.ClassCastException:xx.Mypanel cannot be cast to java.awt.event.KeyListener

反复检查一直不知道错误出在哪,最后突然意识到在该包下还有一个MyPanel类,造成了混乱,同包下不能有同名类

问题很小,一般人不会想到这点,但是偶尔的手误让我浪费了很多时间,引以为戒。

转载于:https://www.cnblogs.com/kapok-Garden/p/10070299.html

如果在使用 Spring Boot 和 MyBatis 进行开发时,mapper 无法被发现,可以尝试以下几个方法: 1. 确认 mapper 接口所在的包是否在 `@MapperScan` 注解中被扫描到。`@MapperScan` 注解通常被用于指定 mapper 接口所在的包,让 MyBatis 自动扫描并生成代理。例如: ``` @MapperScan("com.example.mapper") @SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } } ``` 2. 确认 mapper 接口的命名规范是否正确。MyBatis 的 mapper 接口命名规范是在 mapper 接口名后面加上 `Mapper`,并且与对应的 mapper.xml 文件同名,例如: ``` public interface UserMapper { User selectById(int id); } ``` 对应的 mapper.xml 文件名应该是 `UserMapper.xml`。 3. 确认 mapper.xml 文件是否被正确加载。MyBatis 的 mapper.xml 文件需要被正确加载才能够被使用。可以在 `application.properties` 文件中配置 `mybatis.mapper-locations` 属性,指定 mapper.xml 文件所在的路径。例如: ``` mybatis.mapper-locations=classpath:mapper/*.xml ``` 4. 确认 mapper 接口是否被正确注入。可以在 mapper 接口上添加 `@Autowired` 注解,让 Spring 自动注入 mapper 接口的实例。例如: ``` @RestController public class UserController { @Autowired private UserMapper userMapper; @GetMapping("/user/{id}") public User getUserById(@PathVariable("id") int id) { return userMapper.selectById(id); } } ``` 在上述代码中,`@Autowired` 注解会让 Spring 自动注入 `UserMapper` 的实例,从而可以使用其中定义的方法。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值