To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions.
The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network.
The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
The technical storage or access that is used exclusively for statistical purposes.
The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes.
Some new questions:
Question:
Which two statements are correct regarding the Actuator loggers endpoint? (Choose two.)
A. To get a logging level of a package called account.web, you can access the /actuator/loggers/account.web endpoint.
B. An application restart is required to change the logging level of the package.
C. In order to use the loggers endpoint, a logger implementation dependency needs to be added.
D. The logging levels of a package that can be accessed via the loggers endpoint include configuredLevel and effectiveLevel.
Question:
Which two statements about BeanFactoryPostProcessors are true? (Choose two.)
A. Allows for the transformation of Spring bean definitions after the beans have been instantiated.
B. Allows for the transformation of Spring bean definitions before the beans are instantiated.
C. Creates proxies for the Spring beans that require an extra behavior like transaction management.
D. PropertySourcesPlaceholderConfigurer implements BeanFactoryPostProcessor and is used to read property values from the Spring Environment.
E. Detects annotations such as @PostConstruct and @PreDestroy and then invokes appropriate behavior.
Question:
According to REST principles, which is the recommended way to update the order resource identified by 1234?
A. Send a PUT request to /orders/edit?id=1234.
B. Send a PUT request to /orders/1234.
C. Send a POST request to /orders/1234.
D. Send a POST request to /orders/edit?id=1234.
Question:
Which two statements are true about Spring AOP? (Choose two.)
A. The @After advice type is invoked regardless of whether a method successfully returned or an exception was thrown.
B. In Spring AOP, a join point represents a method execution or property access.
C. Spring AOP does not use AspectJ’s pointcut expression language.
D. Examples of cross-cutting concerns include security, caching, transaction.
E. There are in total 4 types of advice, @Before, @After, @AfterReturning and @AfterThrowing.
Question:
What’s the password storage format when using the DelegatingPasswordEncoder?
A. encodedPassword{id}, where {id} is an identifier used to look up which PasswordEncoder should be used.
B. {id}encodedPassword, where {id} is an identifier used to look up which PasswordEncoder should be used.
C. {timestamp}encodedPassword, where {timestamp} is the time when the password was encoded.
D. {id}{salt}encodedPassword, where {id} is an identifier used to look up which PasswordEncoder should be used and {salt} a randomly generated salt.
………