You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 2, 2019. It is now read-only.
When typical security is used, like in the script below, the wrong view aredeclared in views.xml.
Although the correct folder ...\src\main\webapp\WEB-INF\views\signup\bootstrap is created, the views in the signup folder are declared and not those in signup\bootstrap.
Testing script (using Spring 2.0.0.M1)
// Create a new project
project setup --topLevelPackage com.springsource.pizzashop --projectName pizzashop
jpa setup --provider HIBERNATE --database HYPERSONIC_IN_MEMORY
entity jpa --class ~.domain.Pizza
field string --fieldName name --notNull --sizeMin 10
field number --fieldName price --notNull --type java.math.BigDecimal
// Adding web layers
web mvc setup
web mvc all --package ~.web
// Adding Spring security
typicalsecurity setup
// Adding JQuery, Datatables and Bootstrap
web mvc jquery setup
web mvc jquery all
web mvc datatables setup
web mvc bootstrap setup
web mvc bootstrap update
When typical security is used, like in the script below, the wrong view aredeclared in views.xml.
Although the correct folder ...\src\main\webapp\WEB-INF\views\signup\bootstrap is created, the views in the signup folder are declared and not those in signup\bootstrap.
Testing script (using Spring 2.0.0.M1)
Original views.xml had
This should be:
The text was updated successfully, but these errors were encountered: