In this thread Rob Bygrave explains that @SqlSelect is deprecated in favour of RawSql and that you can put these in orm.xml as "named queries".
Meanwhile, the online documentation for SqlQuery states that:
Firstly note that you can use your own sql queries with entity beans by using the SqlSelect annotation. This should be your first approach when wanting to use your own SQL queries.
I have attempted use named queries instead of @SqlSelect with entity beans, but this combination doesn't seem to be possible.
My orm.xml file:
<named-native-query name="find.connections">
<query>
...
The only way I seem to be able to retrieve it is with:
SqlQuery namedSqlQuery = Ebean.createNamedSqlQuery("find.connections");
..which means that I am only able to return SqlRow's while my query returns rows "compatible" with an Entity.
With RawSql and the query defined as a constant string (FIND_CONNECTIONS) I used:
Query<Item> itemQuery = Ebean.find(Item.class);
RawSql rawSql = RawSqlBuilder.parse(FIND_CONNECTIONS).columMapping("name", "name").create();
itemQuery.setRawSql(rawSql);
List<Item> items = itemQuery.findList();
It would be nice if I could define the native SQL in a separate file and still use RawSql, question is, is it possible with the Ebean API and the orm.xml file?