简体   繁体   中英

Spring data native query with variable quantity of parameters

I have a complex SQL query which may have different number of parameters in where section. So, query sql should be constructed manually. As a result, I get array of objects which contains 45 fields, each of them I will have to case, convert, etc. I can't use result set mapping because it requires a stable SQL which I should specify in annotation. So the question is is there a way to return pojo or at least map with columns names rather than access all objects by index?

String sql = "select col1 as column1, ...., columnN as columnN from table where col1=2 ";

if(param1!=null){
   sql+=" AND param1="+param1;
}

....

Query q = manager.createNativeQuery(sql);

//getting list on object arrays of 45 fields, would like to have POJO or at least map
List list = q.getResultList();

If the table from where you retrieve your data is mapped in a POJO, you can specify manually the POJO by doing the following:

Query query = em.createNativeQuery("SELECT * FROM table", MyPojoMappingTable.class);
@SuppressWarnings("unchecked")
List<MyPojoMappingTable> items = (List<MyPojoMappingTable>) query.getResultList();

On the contrary, if the table is not mapped in any POJO and you're in Spring, you could use jdbcTemplate to get at least a map:

@Autowired
NamedParameterJdbcTemplate jdbcTemplate;

String query;
Map<String, Object> queryParameters;

List<Map<String, Object>> rows = jdbcTemplate.queryForList(
    query,
    queryParameters
);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM