Remove unnecessary code from samples

Remove code that is not necessary to demonstrate Spring Session functionality and is not compatible with the Java 17 / Jakarta EE 9 upgrades.

Issue gh-1949
This commit is contained in:
Eleftheria Stein
2021-11-12 10:35:35 +01:00
parent fc5f875036
commit cc1fd826ac
18 changed files with 1 additions and 75 deletions

View File

@@ -6,8 +6,6 @@ plugins {
dependencies {
implementation project(':spring-session-jdbc')
implementation "org.springframework:spring-web"
implementation "org.webjars:bootstrap"
implementation "org.webjars:webjars-taglib"
implementation "com.h2database:h2"
implementation "org.slf4j:slf4j-api"
implementation "org.slf4j:jcl-over-slf4j"

View File

@@ -1,11 +1,8 @@
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="wj" uri="http://www.webjars.org/tags" %>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Session Attributes</title>
<wj:locate path="bootstrap.min.css" relativeTo="META-INF/resources" var="bootstrapCssLocation"/>
<link rel="stylesheet" href="<c:url value="${bootstrapCssLocation}"/>">
<style type="text/css">
body {
padding: 1em;