Commit e6349d8b6be3ff0ea3b39e51a72ca5d5d4afa878
Exists in
master
Merge branch '2.4.0' of git@github.com:demoiselle/framework.git into 2.4.0
Showing
2 changed files
with
3 additions
and
3 deletions
Show diff stats
archetype/jsf-jpa/src/main/resources/archetype-resources/src/main/java/view/BookmarkEditMB.java
... | ... | @@ -11,7 +11,7 @@ import ${package}.business.BookmarkBC; |
11 | 11 | import ${package}.domain.Bookmark; |
12 | 12 | |
13 | 13 | @ViewController |
14 | -@PreviousView("./bookmark_list.xhtml") | |
14 | +@PreviousView("/bookmark_list.xhtml") | |
15 | 15 | public class BookmarkEditMB extends AbstractEditPageBean<Bookmark, Long> { |
16 | 16 | |
17 | 17 | private static final long serialVersionUID = 1L; | ... | ... |
archetype/jsf-jpa/src/main/resources/archetype-resources/src/main/java/view/BookmarkListMB.java
... | ... | @@ -15,8 +15,8 @@ import ${package}.business.BookmarkBC; |
15 | 15 | import ${package}.domain.Bookmark; |
16 | 16 | |
17 | 17 | @ViewController |
18 | -@NextView("./bookmark_edit.xhtml") | |
19 | -@PreviousView("./bookmark_list.xhtml") | |
18 | +@NextView("/bookmark_edit.xhtml") | |
19 | +@PreviousView("/bookmark_list.xhtml") | |
20 | 20 | public class BookmarkListMB extends AbstractListPageBean<Bookmark, Long> { |
21 | 21 | |
22 | 22 | private static final long serialVersionUID = 1L; | ... | ... |