ext2 has no journal. On ext3, journal updates are only associated with write operations (which spin the disk up anyway).
The real secret is to make sure you mount the filesystem with the -noatime option. If you don't, then *every* access (read) will result in a write to the directory (to update its access time) and keep the disk spinning more than necessary.