简体   繁体   中英

Secure Java Application Database

I'm looking to build an application for managing finances. It will be storing bank transactions, so the data file has to be secure. I'm comfortable with SQL and JDBC, although the solution by no means has to be JDBC. I'm looking for an embedded solution as I want the data files to be portable.

I've tried using TrueZip (http://truezip.java.net/) to create a ZIP container, then various database APIs to manage the data inside. I've tried:

Maybe there's something simpler, an embedded DB with built in security. (That would be the best!) I'm not opposed to writing my own secure DB, but if there's something out there that's tested and works, I'm in!

Thanks for looking at my question.

First of all all big DBMS have integrated authentication mechanisms and security.
So why not use that?
If your problem is that you want some free embedded database then check out H2
It is java-oriented and it offers encryption

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