Skip to content

Commit

Permalink
Move Redis Reactive Configuration
Browse files Browse the repository at this point in the history
Renaming the package to better align with WebSession pacakge structure

Fixes spring-projectsgh-901
  • Loading branch information
rwinch committed Oct 23, 2017
1 parent 8b9d421 commit 6cfa975
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Import;
import org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory;
import org.springframework.session.data.redis.config.annotation.web.reactor.EnableRedisReactorSession;
import org.springframework.session.data.redis.config.annotation.web.server.EnableRedisReactorSession;

@Import(EmbeddedRedisConfig.class)
// tag::class[]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Configuration;
import org.springframework.session.Session;
import org.springframework.session.data.redis.config.annotation.web.reactor.EnableRedisReactorSession;
import org.springframework.session.data.redis.config.annotation.web.server.EnableRedisReactorSession;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.web.WebAppConfiguration;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.session.data.redis.config.annotation.web.reactor;
package org.springframework.session.data.redis.config.annotation.web.server;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.session.data.redis.config.annotation.web.reactor;
package org.springframework.session.data.redis.config.annotation.web.server;

import java.util.Map;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package org.springframework.session.data.redis.config.annotation.web.reactor;
package org.springframework.session.data.redis.config.annotation.web.server;

import org.junit.After;
import org.junit.Before;
Expand Down

0 comments on commit 6cfa975

Please sign in to comment.