0

Using rest service using Helidon

Have created app using Helidon and rest services are available from Helidon.

i want to use spring jdbc template,dao Autowire features with Helidon and searched lot didn't find any article first of all is it right way ? Please suggest docs links

Nagappa L M
  • 1,452
  • 4
  • 20
  • 33

2 Answers2

3

Spring and Helidon are alternative frameworks indented for (mostly) the same purpose. They are two different worlds that will have problems coliding. I don't think it's impossible to combine them, but it is at least impractical and bound to bring lots of problems like bean instantiation, classloader and so on with them. I'd recommend you choose one of the two and stick with it.

Urr4
  • 611
  • 9
  • 26
0

Helidon is not Spring so does not support these features. It sounds like you want to write a Spring application instead.

Laird Nelson
  • 15,321
  • 19
  • 73
  • 127