java - Eager fetching blobs in Ebean under certain cases -


is there way make ebean eagerly fetch blobs under cases using ebean query api? know discarding @lob annotation make ebean fetch blobs fetch blobs under cases not want.

after looking bit @ javadoc of ebean query api. found out how using:

query.select("*"); 

will make ebean fetch columns of table including blobs. alternatively if want fetch blob use:

query.select("blobpropertyname"); 

Comments

Popular posts from this blog

apache - Remove .php and add trailing slash in url using htaccess not loading css -

javascript - jQuery show full size image on click -