All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clickntap.tool.jdbc.JdbcDefaultBlobber Maven / Gradle / Ivy

The newest version!
package com.clickntap.tool.jdbc;

import java.lang.reflect.Method;
import java.util.List;

import org.springframework.web.multipart.MultipartFile;

public class JdbcDefaultBlobber implements JdbcBlobber {

  public void update(Object bean, MultipartFile multipartFile, List scripts, JdbcManager jdbcManager) throws Exception {
    Method method = bean.getClass().getMethod("setFile", MultipartFile.class);
    if (method != null)
      method.invoke(bean, multipartFile);
    jdbcManager.updateScript(scripts.get(0), bean);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy