Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,我有一个实体产品,我需要导入 excel 文件并保存在数据库中。
最好的方法是在您的控制器中创建一个 serveResource 方法,该方法使用 Apache POI 读取二进制文件(您可以使用表单或通过 AJAX 获取它)从 excel 文件中的值并将它们存储到您的产品列表实体 bean 中。
此外,如果您愿意,您可以修改您的 ProductLocalServiceImpl 并重建服务,修改该方法的输入参数并接受一个字节 []。然后您必须在此方法中包含所有逻辑(不推荐)。