一般mybatisplus的配置mybatisPlusInterceptor()这个类应该放在那里
时间: 2023-12-07 15:27:39 浏览: 71
这个是配置mybatis的配置的其中一个config.dtd
客户成功!", "消息", JOptionPane.INFORMATION_MESSAGE);
return;
}
}
JOptionPane.showMessageDialog(this, "客户不存在!", "错误", JOptionPane.ERROR_MESSAGE);
}
// 修改客户信息
private void modifyCustomer() {
String id =一般来说,Mybatis-Plus的配置文件是放在resources目录下的,包括mybatis-plus的配置文件 idField.getText();
for (int i = 0; i < customers.size(); i++) {
if (customers.get(i).getId和mybatis的配置文件。而MybatisPlusInterceptor()这个类是Mybatis-Plus提供的拦截器,应().equals(id)) {
String name = nameField.getText();
String zipCode = zipCodeField.getText();
int year = Integer该放在你的项目的com.baomidou.mybatisplus.core包中,这个包是Mybatis-Plus的核心包,里面.parseInt((String) yearCombo.getSelectedItem());
int month = Integer.parseInt((String) monthCombo.getSelectedItem());
int day = Integer.parseInt((包含了Mybatis-Plus的核心类和接口。在你的项目中,可以通过引入Mybatis-PlusString) dayCombo.getSelectedItem());
Date birthDate = new Date(year - 1900, month - 1, day);
String phone = phoneField.getText();
String gender = genderField.getText();
String address = addressField.getText();
Customer customer = new Customer的依赖来获取这个包。同时,在你的项目中,你也需要配置Mybatis-Plus的拦截器,(id, name, zipCode, birthDate, phone, gender, address);
customers.set(i, customer);
JOptionPane.showMessageDialog(this,让Mybatis-Plus能够正常工作。具体的配置可以参考Mybatis-Plus的官方文档。
阅读全文