Polish traditional example

This commit is contained in:
Greg Turnquist
2017-08-02 14:42:34 -05:00
parent 7adb27f14d
commit 6f2640bc5d
10 changed files with 20 additions and 20 deletions

View File

@@ -4,19 +4,19 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.session.data.mongodb</groupId>
<parent>
<groupId>org.springframework.session.data.mongodb</groupId>
<artifactId>spring-session-data-mongodb-examples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
</parent>
<groupId>org.springframework.session.data.mongodb</groupId>
<artifactId>spring-session-data-mongodb-traditional-boot</artifactId>
<packaging>jar</packaging>
<parent>
<groupId>org.springframework.session.data.mongodb</groupId>
<artifactId>spring-session-data-mongodb-examples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
</parent>
<name>Spring Session MongoDB - Examples - Traditional Boot</name>
<name>Spring Session MongoDB - Examples - Traditional Boot</name>
<dependencies>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package sample;
package org.springframework.session.mongodb.examples;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package sample;
package org.springframework.session.mongodb.examples;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package sample.config;
package org.springframework.session.mongodb.examples.config;
import org.springframework.context.annotation.Bean;
import org.springframework.session.data.mongo.JdkMongoSessionConverter;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package sample.config;
package org.springframework.session.mongodb.examples.config;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package sample.mvc;
package org.springframework.session.mongodb.examples.mvc;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package sample;
package org.springframework.session.mongodb.examples;
import java.util.Set;
@@ -26,8 +26,8 @@ import org.openqa.selenium.By;
import org.openqa.selenium.Cookie;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import sample.pages.HomePage;
import sample.pages.LoginPage;
import org.springframework.session.mongodb.examples.pages.HomePage;
import org.springframework.session.mongodb.examples.pages.LoginPage;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package sample.pages;
package org.springframework.session.mongodb.examples.pages;
import org.openqa.selenium.WebDriver;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package sample.pages;
package org.springframework.session.mongodb.examples.pages;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package sample.pages;
package org.springframework.session.mongodb.examples.pages;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;