Skip to content

Instantly share code, notes, and snippets.

@thomasJang
Created June 7, 2017 11:49
Show Gist options
  • Save thomasJang/d2920489844f9408c4e153b62cc272be to your computer and use it in GitHub Desktop.
Save thomasJang/d2920489844f9408c4e153b62cc272be to your computer and use it in GitHub Desktop.
RequestUtils.jsp
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8" %>
<%@ page import="com.chequer.sqlgate.pms.core.utils.*" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="ax" tagdir="/WEB-INF/tags" %>
<%
String licenseType = RequestUtils.of(request).getString("licenseType", "business");
String buyType = RequestUtils.of(request).getString("buyType", "new");
request.setAttribute("licenseType", licenseType);
request.setAttribute("buyType", buyType);
%>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment