Guest User

Untitled

a guest
May 31st, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. # Placeholders for Oracle:
  2. int.jdbc.driver=oracle.jdbc.OracleDriver
  3. int.jdbc.url=jdbc:oracle:thin:@localhost:1521:xe
  4. int.jdbc.user=spring
  5. int.jdbc.password=spring
  6. int.drop.script=classpath:/schema-drop-oracle.sql
  7. int.schema.script=classpath:/schema-oracle.sql
  8. int.insert.query=insert into item (id,bus_key,name,status) values (item_seq.nextval,:payload.key, :payload.name, 2)
  9. int.poll.query=select * from (select id,name,status,rownum as tmp_row from item where bus_key=:key and status=2) where tmp_row<3
  10. int.keys.query=select distinct bus_key from item where status=2
  11. int.scheduler.pool.size=10
Add Comment
Please, Sign In to add comment