|
@@ -25,14 +25,20 @@ public class LifeCenterController {
|
|
|
String url = request.getRequestURI().toString();
|
|
|
String[] split = url.split("/");
|
|
|
String pathType = "";
|
|
|
+ String pathType2 = "";
|
|
|
|
|
|
if (split.length > 0) {
|
|
|
pathType = split[1].toLowerCase();
|
|
|
}
|
|
|
+
|
|
|
+ if (split.length > 1) {
|
|
|
+ pathType2 = split[2].toLowerCase();
|
|
|
+ }
|
|
|
|
|
|
hashMap.put("_TITLE", "생활치료센터 의료진 시스템");
|
|
|
hashMap.put("_INCLUDE", "/WEB-INF/jsp/include");
|
|
|
hashMap.put("_MENUPATH", pathType);
|
|
|
+ hashMap.put("_MENUPATH2", pathType2);
|
|
|
|
|
|
try {
|
|
|
String sesId = LifeCenterSessionController.getSession( request, "sesId" );
|