Search Results

9
votes

Overriding equals and hashCode in Java

There are some issues worth noticing if you're dealing with classes that are persisted using an Object-Relationship Mapper (ORM) like Hibernate. If you didn't think this was unreasonably complicate …
9
votes

Can we use JUNIT for Automated Integration Testing?

I've used JUnit for doing a lot of integration testing. Integration testing can, of course, mean many different things. For more system level integration tests, I prefer to let scripts drive my tes …
2
votes

Encrypt Password in Configuration Files? (Java)

A simple way of doing this is to use Password Based Encryption in Java. This allows you to encrypt and decrypt a text by using a password. This basically means initialing a javax.crypto.Cip …