Skip to content

Commit 64580b4

Browse files
committed
* fixed #288 create Branch JSF_Version from Release 2.3.26
* Issue #291 Evaluate Joinfaces * Issue #292 app starts with joinfaces * Issue #293 app run with joinfaces but with MVC Templates * Issue #294 Logging with logback only
1 parent f181946 commit 64580b4

34 files changed

+39
-37
lines changed

etc/TODO.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,10 @@ Caused by: org.postgresql.util.PSQLException: ERROR: relation "spring_session" d
143143
* fixed #93 add JSF JavaxFaces Spring Boot AutoConfigure
144144
* fixed #92 try jars
145145
* fixed #288 create Branch JSF_Version from Release 2.3.26
146-
* Issue #291Evaluate Joinfaces
146+
* Issue #291 Evaluate Joinfaces
147+
* Issue #292 app starts with joinfaces
148+
* Issue #293 app run with joinfaces but with MVC Templates
149+
* Issue #294 Logging with logback only
147150

148151
## Joinfaces
149152
* https://github.com/joinfaces/joinfaces

src/main/java/org/woehlke/simpleworklist/application/breadcrumb/services/BreadcrumbServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import java.util.Locale;
1616
import java.util.Stack;
1717

18-
@Slf4j
18+
@Log
1919
@Service
2020
@Transactional(propagation = Propagation.REQUIRED, readOnly = true)
2121
public class BreadcrumbServiceImpl implements BreadcrumbService {

src/main/java/org/woehlke/simpleworklist/application/error/MyErrorController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import static org.springframework.web.bind.annotation.RequestMethod.*;
1515

1616

17-
@Slf4j
17+
@Log
1818
@Controller
1919
@RequestMapping(path="/fehler")
2020
public class MyErrorController implements ErrorController {

src/main/java/org/woehlke/simpleworklist/application/testdata/TestDataController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import org.springframework.beans.factory.annotation.Autowired;
1111
import org.woehlke.simpleworklist.user.services.UserAccountLoginSuccessService;
1212

13-
@Slf4j
13+
@Log
1414
@Controller
1515
@RequestMapping(path = "/testdata")
1616
public class TestDataController {

src/main/java/org/woehlke/simpleworklist/application/testdata/services/TestDataServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import java.util.Date;
2020
import java.util.UUID;
2121

22-
@Slf4j
22+
@Log
2323
@Service
2424
public class TestDataServiceImpl implements TestDataService {
2525

src/main/java/org/woehlke/simpleworklist/domain/context/ContextController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
/**
1717
* Created by tw on 13.03.16.
1818
*/
19-
@Slf4j
19+
@Log
2020
@Controller
2121
@RequestMapping(path = "/context")
2222
public class ContextController extends AbstractController {

src/main/java/org/woehlke/simpleworklist/domain/project/ProjectIdController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
/**
3535
* Created by tw on 14.02.16.
3636
*/
37-
@Slf4j
37+
@Log
3838
@Controller
3939
@RequestMapping(path = "/project/{projectId}")
4040
public class ProjectIdController extends AbstractController {

src/main/java/org/woehlke/simpleworklist/domain/project/ProjectRootController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
import static org.woehlke.simpleworklist.domain.project.Project.rootProjectId;
3434

35-
@Slf4j
35+
@Log
3636
@Controller
3737
@RequestMapping(path = "/project/root")
3838
public class ProjectRootController extends AbstractController {

src/main/java/org/woehlke/simpleworklist/domain/search/SearchController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/**
2121
* Created by tw on 14.02.16.
2222
*/
23-
@Slf4j
23+
@Log
2424
@Controller
2525
@RequestMapping(path = "/search")
2626
public class SearchController extends AbstractController {

src/main/java/org/woehlke/simpleworklist/domain/task/TaskStateTabController.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package org.woehlke.simpleworklist.domain.task;
22

3-
import lombok.extern.slf4j.Slf4j;
43
import org.springframework.beans.factory.annotation.Autowired;
54
import org.springframework.data.domain.Pageable;
65
import org.springframework.data.domain.Sort;
@@ -18,7 +17,7 @@
1817
import javax.validation.constraints.NotNull;
1918
import java.util.Locale;
2019

21-
@Slf4j
20+
@Log
2221
@Controller
2322
@RequestMapping(path = "/taskstate")
2423
public class TaskStateTabController extends AbstractController {

src/main/java/org/woehlke/simpleworklist/domain/task/TaskStateTaskController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package org.woehlke.simpleworklist.domain.task;
22

3-
import lombok.extern.slf4j.Slf4j;
3+
44
import org.springframework.stereotype.Controller;
55
import org.springframework.ui.Model;
66
import org.springframework.validation.BindingResult;
@@ -27,7 +27,7 @@
2727
/**
2828
* Created by tw on 21.02.16.
2929
*/
30-
@Slf4j
30+
@Log
3131
@Controller
3232
@RequestMapping(path = "/taskstate/task")
3333
public class TaskStateTaskController extends AbstractController {

src/main/java/org/woehlke/simpleworklist/services/ContextServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/**
1818
* Created by tw on 13.03.16.
1919
*/
20-
@Slf4j
20+
@Log
2121
@Service
2222
@Transactional(propagation = Propagation.REQUIRED, readOnly = true)
2323
public class ContextServiceImpl implements ContextService {

src/main/java/org/woehlke/simpleworklist/services/ProjectControllerServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
import static org.woehlke.simpleworklist.domain.project.Project.rootProjectId;
2323

24-
@Slf4j
24+
@Log
2525
@Service
2626
public class ProjectControllerServiceImpl implements ProjectControllerService {
2727

src/main/java/org/woehlke/simpleworklist/services/ProjectServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import javax.validation.constraints.Min;
2222
import javax.validation.constraints.NotNull;
2323

24-
@Slf4j
24+
@Log
2525
@Service
2626
@Transactional(propagation = Propagation.REQUIRED, readOnly = true)
2727
public class ProjectServiceImpl implements ProjectService {

src/main/java/org/woehlke/simpleworklist/services/SearchRequestServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
import java.util.UUID;
1212

13-
@Slf4j
13+
@Log
1414
@Service
1515
public class SearchRequestServiceImpl implements SearchRequestService {
1616

src/main/java/org/woehlke/simpleworklist/services/SearchResultServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
import java.util.UUID;
1212

13-
@Slf4j
13+
@Log
1414
@Service
1515
public class SearchResultServiceImpl implements SearchResultService {
1616

src/main/java/org/woehlke/simpleworklist/services/SearchServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/**
1313
* Created by tw on 14.02.16.
1414
*/
15-
@Slf4j
15+
@Log
1616
@Service
1717
public class SearchServiceImpl implements SearchService {
1818

src/main/java/org/woehlke/simpleworklist/services/TaskProjektServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
import javax.validation.constraints.NotNull;
1313

14-
@Slf4j
14+
@Log
1515
@Service
1616
public class TaskProjektServiceImpl implements TaskProjektService {
1717

src/main/java/org/woehlke/simpleworklist/services/TaskServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import java.util.List;
2121
import java.util.UUID;
2222

23-
@Slf4j
23+
@Log
2424
@Service
2525
public class TaskServiceImpl implements TaskService {
2626

src/main/java/org/woehlke/simpleworklist/services/TaskStateControllerServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import javax.validation.constraints.NotNull;
1919
import java.util.Locale;
2020

21-
@Slf4j
21+
@Log
2222
@Service
2323
public class TaskStateControllerServiceImpl implements TaskStateControllerService {
2424

src/main/java/org/woehlke/simpleworklist/user/account/UserSelfserviceController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
/**
3333
* Created by Fert on 14.03.2016.
3434
*/
35-
@Slf4j
35+
@Log
3636
@Controller
3737
@RequestMapping(path = "/user/selfservice")
3838
public class UserSelfserviceController extends AbstractController {

src/main/java/org/woehlke/simpleworklist/user/chat/User2UserMessageController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* Created by
2727
* on 16.02.2016.
2828
*/
29-
@Slf4j
29+
@Log
3030
@Controller
3131
@RequestMapping(path = "/user/messages/")
3232
public class User2UserMessageController extends AbstractController {

src/main/java/org/woehlke/simpleworklist/user/login/LoginSuccessHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/**
2121
* Created by tw on 19.02.16.
2222
*/
23-
@Slf4j
23+
@Log
2424
@Component
2525
public class LoginSuccessHandler extends SavedRequestAwareAuthenticationSuccessHandler
2626
implements AuthenticationSuccessHandler {

src/main/java/org/woehlke/simpleworklist/user/login/UserLoginController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import org.woehlke.simpleworklist.user.services.UserAccountAccessService;
2121
import org.woehlke.simpleworklist.user.services.UserAccountLoginSuccessService;
2222

23-
@Slf4j
23+
@Log
2424
@Controller
2525
@RequestMapping(path = "/user")
2626
public class UserLoginController {

src/main/java/org/woehlke/simpleworklist/user/register/UserRegistrationController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
import javax.validation.Valid;
1717

18-
@Slf4j
18+
@Log
1919
@Controller
2020
@RequestMapping(path = "/user/register")
2121
public class UserRegistrationController {

src/main/java/org/woehlke/simpleworklist/user/resetpassword/UserPasswordRecoveryController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import javax.validation.Valid;
2020

21-
@Slf4j
21+
@Log
2222
@Controller
2323
@RequestMapping(path = "/user")
2424
public class UserPasswordRecoveryController {

src/main/java/org/woehlke/simpleworklist/user/services/User2UserMessageServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Created by tw on 16.02.2016.
2121
*/
22-
@Slf4j
22+
@Log
2323
@Service
2424
@Transactional(propagation = Propagation.REQUIRED, readOnly = true)
2525
public class User2UserMessageServiceImpl implements User2UserMessageService {

src/main/java/org/woehlke/simpleworklist/user/services/UserAccountAccessServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import org.woehlke.simpleworklist.user.login.LoginForm;
1616
import org.woehlke.simpleworklist.user.account.UserChangePasswordForm;
1717

18-
@Slf4j
18+
@Log
1919
@Service
2020
@Transactional(propagation = Propagation.REQUIRED, readOnly = true)
2121
public class UserAccountAccessServiceImpl implements UserAccountAccessService {

src/main/java/org/woehlke/simpleworklist/user/services/UserAccountLoginSuccessServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
import java.util.Date;
1717

18-
@Slf4j
18+
@Log
1919
@Service
2020
@Transactional(propagation = Propagation.REQUIRED, readOnly = true)
2121
public class UserAccountLoginSuccessServiceImpl implements UserAccountLoginSuccessService {

src/main/java/org/woehlke/simpleworklist/user/services/UserAccountSecurityPasswordServiceImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package org.woehlke.simpleworklist.user.services;
22

3-
import lombok.extern.slf4j.Slf4j;
3+
44
import org.springframework.beans.factory.annotation.Autowired;
55
import org.springframework.security.authentication.AuthenticationManager;
66
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
@@ -16,7 +16,7 @@
1616
import org.woehlke.simpleworklist.user.account.UserAccountRepository;
1717
import org.woehlke.simpleworklist.user.services.UserAccountSecurityPasswordService;
1818

19-
@Slf4j
19+
@Log
2020
@Service
2121
@Transactional(propagation = Propagation.REQUIRED, readOnly = true)
2222
public class UserAccountSecurityPasswordServiceImpl implements UserAccountSecurityPasswordService {

src/main/java/org/woehlke/simpleworklist/user/services/UserAccountSecurityServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import org.woehlke.simpleworklist.user.account.UserDetailsBean;
1313
import org.woehlke.simpleworklist.user.services.UserAccountSecurityService;
1414

15-
@Slf4j
15+
@Log
1616
@Service
1717
@Transactional(propagation = Propagation.REQUIRED, readOnly = true)
1818
public class UserAccountSecurityServiceImpl implements UserAccountSecurityService {

src/main/java/org/woehlke/simpleworklist/user/services/UserAccountServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import org.woehlke.simpleworklist.domain.context.ContextRepository;
2323
import org.woehlke.simpleworklist.user.chat.User2UserMessageRepository;
2424

25-
@Slf4j
25+
@Log
2626
@Service("userAccountService")
2727
@Transactional(propagation = Propagation.REQUIRED, readOnly = true)
2828
public class UserAccountServiceImpl implements UserAccountService {

src/main/java/org/woehlke/simpleworklist/user/services/UserPasswordRecoveryServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
import java.util.Date;
1818

19-
@Slf4j
19+
@Log
2020
@Service
2121
@Transactional(propagation = Propagation.REQUIRED, readOnly = true)
2222
public class UserPasswordRecoveryServiceImpl implements UserPasswordRecoveryService {

src/main/java/org/woehlke/simpleworklist/user/services/UserRegistrationServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import org.woehlke.simpleworklist.user.services.TokenGeneratorService;
2121
import org.woehlke.simpleworklist.user.services.UserRegistrationService;
2222

23-
@Slf4j
23+
@Log
2424
@Service
2525
@Transactional(propagation = Propagation.REQUIRED, readOnly = true)
2626
public class UserRegistrationServiceImpl implements UserRegistrationService {

0 commit comments

Comments
 (0)