Currently I´m trying to learn Angular JS
, but firstly I want to setup my environment with Spring mvc
.
At the moment I only want to work with rest, but I have a doubt for what is the best way to place the resoucres in Spring MVC
My simple applicaction has this squeleton:
my-simple-app:
src
main
java
resources
webapp
resources
WEB-INF
If I want to put the app
folder from the angular-seed, what is the best place to put it?
I tried to put in src/webapp/resources/app
but then I have to move the html
files to WEB-INF?
How was your skeleton in your angular-js spring mvc applications?
What is the best way to do the redirect to the app/index.html
? to the welcome file and then work only with angularjs
$routeproviders
?
Thanks!