Testable Spring beans using Lombok RequiredArgsConstructor
Learn how to make your Spring code more easily testable by using explicit constructors instead of relying on the @Autowired annotation.
Now with 100% fewer socks
Now with 100% fewer socks
Learn how to make your Spring code more easily testable by using explicit constructors instead of relying on the @Autowired annotation.
JSpeex is a Java implementation of the Speex codec. By default, Java ships with either no encoding or the venerable G.711 encoders. However, if you want to store a bit of a larger data set, well, you’re out of luck. This is a problem for me, as I wanted to store a lot of spoken data in a little space. Luckily, the Speex codec is right for that, but it wasn’t as easy to get it into my project as I wanted.