Skip to content

Commit

Permalink
Merge branch '3.3.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusdacoregio committed Aug 21, 2024
2 parents 4fbd3ee + d816bb1 commit 54cfc8a
Show file tree
Hide file tree
Showing 20 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ com-zaxxer-HikariCP = "com.zaxxer:HikariCP:5.1.0"
edu-umd-cs-mtc-multithreadedtc = "edu.umd.cs.mtc:multithreadedtc:1.01"
io-lettuce-lettuce-core = "io.lettuce:lettuce-core:6.3.2.RELEASE"
io-projectreactor-reactor-bom = "io.projectreactor:reactor-bom:2023.0.9"
io-spring-javaformat-spring-javaformat-checkstyle = "io.spring.javaformat:spring-javaformat-checkstyle:0.0.42"
io-spring-javaformat-spring-javaformat-checkstyle = "io.spring.javaformat:spring-javaformat-checkstyle:0.0.43"
io-spring-nohttp-nohttp-checkstyle = "io.spring.nohttp:nohttp-checkstyle:0.0.11"
jakarta-servlet-jakarta-servlet-api = "jakarta.servlet:jakarta.servlet-api:6.0.0"
jakarta-servlet-jsp-jstl-jakarta-servlet-jsp-jstl-api = "jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api:3.0.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
*/
@ExtendWith(SpringExtension.class)
@ContextConfiguration
public class MongoDbDeleteJacksonSessionVerificationTest {
class MongoDbDeleteJacksonSessionVerificationTest {

@Autowired
ApplicationContext ctx;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
*/
@ExtendWith(SpringExtension.class)
@ContextConfiguration
public class MongoDbLogoutVerificationTest {
class MongoDbLogoutVerificationTest {

@Autowired
ApplicationContext ctx;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
* @author Greg Turnquist
*/
@ContextConfiguration
public class MongoRepositoryJacksonITest extends AbstractMongoRepositoryITest {
class MongoRepositoryJacksonITest extends AbstractMongoRepositoryITest {

@Test
void findByCustomIndex() throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* @author Greg Turnquist
*/
@ContextConfiguration
public class MongoRepositoryJdkSerializationITest extends AbstractMongoRepositoryITest {
class MongoRepositoryJdkSerializationITest extends AbstractMongoRepositoryITest {

@Test
void findByDeletedSecurityPrincipalNameReload() throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* @author Jakub Kubrynski
* @author Greg Turnquist
*/
public class JacksonMongoSessionConverterTests extends AbstractMongoSessionConverterTests {
class JacksonMongoSessionConverterTests extends AbstractMongoSessionConverterTests {

JacksonMongoSessionConverter mongoSessionConverter = new JacksonMongoSessionConverter();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* @author Rob Winch
* @author Greg Turnquist
*/
public class JdkMongoSessionConverterTests extends AbstractMongoSessionConverterTests {
class JdkMongoSessionConverterTests extends AbstractMongoSessionConverterTests {

Duration inactiveInterval = Duration.ofMinutes(30);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* @author Greg Turnquist
*/
@ExtendWith(MockitoExtension.class)
public class MongoIndexedSessionRepositoryTests {
class MongoIndexedSessionRepositoryTests {

@Mock
private AbstractMongoSessionConverter converter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* @author Rob Winch
* @author Greg Turnquist
*/
public class MongoSessionTests {
class MongoSessionTests {

@Test
void isExpiredWhenIntervalNegativeThenFalse() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
* @author Greg Turnquist
*/
@ExtendWith(MockitoExtension.class)
public class ReactiveMongoSessionRepositoryTests {
class ReactiveMongoSessionRepositoryTests {

@Mock
private AbstractMongoSessionConverter converter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
* @author Eddú Meléndez
* @author Vedran Pavic
*/
public class MongoHttpSessionConfigurationTests {
class MongoHttpSessionConfigurationTests {

private static final String COLLECTION_NAME = "testSessions";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
* @author Greg Turnquist
* @author Vedran Pavic
*/
public class ReactiveMongoWebSessionConfigurationTests {
class ReactiveMongoWebSessionConfigurationTests {

private AnnotationConfigApplicationContext context;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
*/
@ExtendWith(SpringExtension.class)
@ContextConfiguration
public class RedisHttpSessionConfigurationClassPathXmlApplicationContextTests {
class RedisHttpSessionConfigurationClassPathXmlApplicationContextTests {

// gh-318
@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
@ExtendWith(SpringExtension.class)
@ContextConfiguration
@WebAppConfiguration
public class RedisHttpSessionConfigurationXmlCustomExpireTests {
class RedisHttpSessionConfigurationXmlCustomExpireTests {

@Test
void contextLoads() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
@ExtendWith(SpringExtension.class)
@ContextConfiguration
@WebAppConfiguration
public class RedisHttpSessionConfigurationXmlTests {
class RedisHttpSessionConfigurationXmlTests {

@Test
void contextLoads() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
@ExtendWith(SpringExtension.class)
@ContextConfiguration
@WebAppConfiguration
public class HttpSessionConfigurationNoOpConfigureRedisActionXmlTests {
class HttpSessionConfigurationNoOpConfigureRedisActionXmlTests {

@Autowired
SessionRepositoryFilter<? extends Session> filter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ void repositoryDemo() {
}

// tag::repository-demo[]
public class RepositoryDemo<S extends Session> {
class RepositoryDemo<S extends Session> {

private SessionRepository<S> repository; // <1>

public void demo() {
void demo() {
S toSave = this.repository.createSession(); // <2>

// <3>
Expand Down Expand Up @@ -98,11 +98,11 @@ void expireRepositoryDemo() {
}

// tag::expire-repository-demo[]
public class ExpiringRepositoryDemo<S extends Session> {
class ExpiringRepositoryDemo<S extends Session> {

private SessionRepository<S> repository; // <1>

public void demo() {
void demo() {
S toSave = this.repository.createSession(); // <2>
// ...
toSave.setMaxInactiveInterval(Duration.ofSeconds(30)); // <3>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@AutoConfigureMockMvc
@Import(TestContainersConfig.class)
public class JdbcJsonAttributeTests {
class JdbcJsonAttributeTests {

@Autowired
MockMvc mvc;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* @author Yanming Zhou
*/
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class AttributeTests {
class AttributeTests {

@LocalServerPort
int port;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
*/
@AutoConfigureMockMvc
@SpringBootTest
public class BootTests {
class BootTests {

@Autowired
private MockMvc mockMvc;
Expand Down

0 comments on commit 54cfc8a

Please sign in to comment.