Details
-
Type:
Bug
-
Status: Resolved
-
Priority:
Major
-
Resolution: Complete
-
Affects Version/s: 2.0.0.RC1
-
Fix Version/s: 2.0.0.RC2
-
Component/s: GENERAL OBJECTS
-
Labels:
-
Environment:OSX 10.12.6
Java 1.8.0_112
Maven 3.5.0
Spring Roo 2.0.0.RC1
Description
For an entity CustomerType, an aspect called CustomerIdTypesCollectionThymeleafController_Roo_Thymeleaf is generated.
The aspect has a list handling method:
@GetMapping(name = "list")
public ModelAndView CustomerIdTypesCollectionThymeleafController.list(Model model)
It should generate as:
@GetMapping(name = "list")
public ModelAndView CustomerIdTypesCollectionThymeleafController.list(Model model)
The leading slash works when the app is run via "mvn spring-boot run", but not when the app is run via the exec-jar. Removing the leading "/" corrects this.
Thanks,
Bob