1

I am developing a web application with Spring. I have read about basic and digest authentication fundamentals. However how can I implement it with Java, is there any code example or is there any framework does it form me?

kamaci
  • 72,915
  • 69
  • 228
  • 366

2 Answers2

1

Here is an example with commons http client library...

Prabath Siriwardena
  • 5,891
  • 1
  • 27
  • 34
0

Since you're already using Spring…

Spring Security implements these things, and its manual is a good place to start reading about it.

Donal Fellows
  • 133,037
  • 18
  • 149
  • 215