Skip to content

Commit 40f6b0b

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

34 files changed

+78
-41
lines changed

pom.xml

Lines changed: 42 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -141,16 +141,20 @@
141141

142142
<spring-data-releasetrain.version>Neumann-SR4</spring-data-releasetrain.version>
143143
<spring-session-bom.version>Dragonfruit-SR1</spring-session-bom.version>
144+
<!--
144145
<spring-framework.version>5.2.9.RELEASE</spring-framework.version>
145146
<spring-security.version>5.3.4.RELEASE</spring-security.version>
147+
-->
146148

147149
<!-- Unit and Integration Testing -->
148150
<junit-jupiter.version>5.6.2</junit-jupiter.version>
149151
<xmlunit2.version>2.6.4</xmlunit2.version>
150152
<xmlunit.version>2.6.4</xmlunit.version>
151153
<htmlunit.version>2.43.0</htmlunit.version>
152154
<hamcrest.version>2.2</hamcrest.version>
155+
<!--
153156
<lombok.version>1.18.12</lombok.version>
157+
-->
154158
<jsoup.version>1.13.1</jsoup.version>
155159

156160
<skipTests>true</skipTests>
@@ -291,6 +295,13 @@
291295

292296
<dependencyManagement>
293297
<dependencies>
298+
<dependency>
299+
<groupId>org.joinfaces</groupId>
300+
<artifactId>joinfaces-dependencies</artifactId>
301+
<version>${joinfaces.version}</version>
302+
<type>pom</type>
303+
<scope>import</scope>
304+
</dependency>
294305
<dependency>
295306
<groupId>org.junit</groupId>
296307
<artifactId>junit-bom</artifactId>
@@ -305,6 +316,13 @@
305316
<type>pom</type>
306317
<scope>import</scope>
307318
</dependency>
319+
<dependency>
320+
<groupId>org.springframework.security</groupId>
321+
<artifactId>spring-security-bom</artifactId>
322+
<version>${spring-security.version}</version>
323+
<type>pom</type>
324+
<scope>import</scope>
325+
</dependency>
308326
<!-- webjars -->
309327
<dependency>
310328
<groupId>org.webjars</groupId>
@@ -344,6 +362,7 @@
344362
<artifactId>lombok</artifactId>
345363
<version>${lombok.version}</version>
346364
<optional>false</optional>
365+
<scope>provided</scope>
347366
</dependency>
348367

349368
<dependency>
@@ -489,13 +508,7 @@
489508
<artifactId>primefaces</artifactId>
490509
<version>8.0</version>
491510
</dependency>
492-
<dependency>
493-
<groupId>org.joinfaces</groupId>
494-
<artifactId>joinfaces-dependencies</artifactId>
495-
<version>${joinfaces.version}</version>
496-
<type>pom</type>
497-
<scope>import</scope>
498-
</dependency>
511+
499512
</dependencies>
500513
</dependencyManagement>
501514

@@ -557,6 +570,10 @@
557570
<groupId>org.springframework.boot</groupId>
558571
<artifactId>spring-boot-starter-security</artifactId>
559572
</dependency>
573+
<dependency>
574+
<groupId>org.springframework.boot</groupId>
575+
<artifactId>spring-boot-starter-logging</artifactId>
576+
</dependency>
560577
<dependency>
561578
<groupId>org.springframework.security</groupId>
562579
<artifactId>spring-security-core</artifactId>
@@ -594,7 +611,18 @@
594611
<groupId>org.projectlombok</groupId>
595612
<artifactId>lombok</artifactId>
596613
<optional>false</optional>
614+
<scope>provided</scope>
597615
</dependency>
616+
<!--
617+
<dependency>
618+
<groupId>ch.qos.logback</groupId>
619+
<artifactId>logback-core</artifactId>
620+
</dependency>
621+
<dependency>
622+
<groupId>ch.qos.logback</groupId>
623+
<artifactId>logback-access</artifactId>
624+
</dependency>
625+
-->
598626
<dependency>
599627
<groupId>org.webjars</groupId>
600628
<artifactId>font-awesome</artifactId>
@@ -1403,6 +1431,13 @@
14031431
</compilerArgs>
14041432
<showWarnings>true</showWarnings>
14051433
<showDeprecation>true</showDeprecation>
1434+
<annotationProcessorPaths>
1435+
<path>
1436+
<groupId>org.projectlombok</groupId>
1437+
<artifactId>lombok</artifactId>
1438+
<version>${lombok.version}</version>
1439+
</path>
1440+
</annotationProcessorPaths>
14061441
</configuration>
14071442
</plugin>
14081443
<plugin>

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-
@Log
18+
@Slf4j
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-
@Log
17+
@Slf4j
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-
@Log
13+
@Slf4j
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-
@Log
22+
@Slf4j
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-
@Log
19+
@Slf4j
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-
@Log
37+
@Slf4j
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-
@Log
35+
@Slf4j
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-
@Log
23+
@Slf4j
2424
@Controller
2525
@RequestMapping(path = "/search")
2626
public class SearchController extends AbstractController {

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@
1414
import org.woehlke.simpleworklist.services.TaskStateControllerService;
1515
import org.woehlke.simpleworklist.user.session.UserSessionBean;
1616

17+
import lombok.extern.slf4j.Slf4j;
1718
import javax.validation.constraints.NotNull;
1819
import java.util.Locale;
1920

20-
@Log
21+
@Slf4j
2122
@Controller
2223
@RequestMapping(path = "/taskstate")
2324
public class TaskStateTabController extends AbstractController {

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import org.springframework.beans.factory.annotation.Autowired;
2020
import org.woehlke.simpleworklist.user.account.UserAccount;
2121

22+
import lombok.extern.slf4j.Slf4j;
2223
import javax.validation.Valid;
2324
import javax.validation.constraints.NotNull;
2425
import java.util.List;
@@ -27,7 +28,7 @@
2728
/**
2829
* Created by tw on 21.02.16.
2930
*/
30-
@Log
31+
@Slf4j
3132
@Controller
3233
@RequestMapping(path = "/taskstate/task")
3334
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-
@Log
20+
@Slf4j
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-
@Log
24+
@Slf4j
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-
@Log
24+
@Slf4j
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-
@Log
13+
@Slf4j
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-
@Log
13+
@Slf4j
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-
@Log
15+
@Slf4j
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-
@Log
14+
@Slf4j
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-
@Log
23+
@Slf4j
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-
@Log
21+
@Slf4j
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-
@Log
35+
@Slf4j
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-
@Log
29+
@Slf4j
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-
@Log
23+
@Slf4j
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-
@Log
23+
@Slf4j
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-
@Log
18+
@Slf4j
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-
@Log
21+
@Slf4j
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-
@Log
22+
@Slf4j
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-
@Log
18+
@Slf4j
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-
@Log
18+
@Slf4j
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-
3+
import lombok.extern.slf4j.Slf4j;
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-
@Log
19+
@Slf4j
2020
@Service
2121
@Transactional(propagation = Propagation.REQUIRED, readOnly = true)
2222
public class UserAccountSecurityPasswordServiceImpl implements UserAccountSecurityPasswordService {

0 commit comments

Comments
 (0)