Skip to content

Commit

Permalink
Merge pull request #230 from ZakarFin/landing-jstl
Browse files Browse the repository at this point in the history
Remove JSTL refs from landing webapp
  • Loading branch information
ZakarFin authored May 3, 2024
2 parents 7ea5fb8 + 32518e2 commit 9b4bc94
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package fi.nls.oskari;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public ModelAndView handleAnyRequest(HttpServletRequest request) {
b.append("?");
b.append(query);
}
logger404.info(b.toString() + " referer: " + request.getHeader("referer"));
logger404.info(b + " referer: " + request.getHeader("referer"));
return new ModelAndView("redirect:/");
}
}
3 changes: 0 additions & 3 deletions webapp-landing/src/main/webapp/WEB-INF/jsp/landingpage.jsp
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
<%@ page contentType="text/html; charset=UTF-8" isELIgnored="false" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
<!DOCTYPE html>
<html lang="en">
<head>
Expand Down

0 comments on commit 9b4bc94

Please sign in to comment.