728x90
반응형

분류 전체보기 417

[TOMCAT] 윈도우(Windows)에 톰캣 설치

1. 톰캣 사이트에 접속하여 원하는 톰캣 버전 다운 https://tomcat.apache.org/download-80.cgi Apache Tomcat® - Apache Tomcat 8 Software Downloads Welcome to the Apache Tomcat® 8.x software download page. This page provides download links for obtaining the latest versions of Tomcat 8.x software, as well as links to the archives of older releases. Unsure which version you need? Specification versions tomcat.apache.org 나..

[JSTL] jsp 에서 JSTL을 이용해서 세션에 저장한 값 가져오기

내경우에는 java단에서 아래와 같이 세션에 request.getSession().setAttribute()을 사용하여 값을 넣은 상태였다 request.getSession().setAttribute("userPower", 1 ); 이 값을 jsp화면에서 확인하려고 했다. 처음에는 상단에 스트립트릿(Scriptlet)을 이용해서 자바 코드를 실행하여 작성할까 하였다. 이렇게 작성 후, 아래와 같이 확인할 까 싶었지만 혹시 jstl을 이용한 방법이 있을까 찾아보았다. 관리 jstl을 이용하는 방법은 의외로 너무 간단하여 당황스러웠는데, 그냥 세션에 넣었던 이름을 그대로 el태그를 이용하여 사용이 가능했다. ${userPower} 아래와같이 조건식으로 사용했다 관리

IT 웹개발/JSP 2022.01.15

[CSS] input placeholder 색상 변경

::placeholder 가상 셀렉터를 사용하면 색상을 변경할 수 있어요. ::-webkit-input-placeholder { /* 크롬 4–56 */ color: #9e9e9e; } :-moz-placeholder { /* 파이어폭스 4–18 */ color: #9e9e9e; opacity: 1; } ::-moz-placeholder { /* 파이어폭스 19–50 */ color: #9e9e9e; opacity: 1; } :-ms-input-placeholder { /* 인터넷 익스플로러 10+ */ color: #9e9e9e; } ::placeholder { /* 파이어폭스 51+, 크롬 57+ */ color: #9e9e9e; opacity: 1; } 각각의 prefix는 따로 적어야 한다는 점을..

IT 웹개발/CSS 2022.01.15

[CSS] :first-child와 :first-of-type 차이점

first-child 셀렉터는 첫 번째 자식을 선택해요. first-of-type 셀렉터는 같은 타입 중 첫 번째인 경우 선택해요. 그러니까 예를 들어: 제목 첫 번째 문단 두 번째 문단 세 번째 문단 여기에서 첫 번째 문단을 선택하고 싶은 경우 p:first-of-type 을 사용해야 해요. (첫 번째 자식은 h1 이기 때문에 :first-child 는 사용할 수 없어요.) p:first-of-type { color: green; }

IT 웹개발/CSS 2022.01.15

div를 창의 100% 높이로 만드는 방법

CSS3에서 뷰포인트 퍼센트 단위를 사용 뷰포인트 퍼센트 길이는 최초 포함 블럭의 사이즈에 비례합니다. 최초 포함 블럭의 높이 또는 너비가 변경된 경우, 뷰포인트 퍼센트 길이는 따라서 크기가 변경됩니다. 뷰포인트 퍼센트 단위는 vw (뷰포인트 너비), vh (뷰포인트 높이), vmin (뷰포인트 너비와 높이 중 최소값), vmax (뷰포인트 너비와 높이 중 최대값) 가 있어요. div를 창의 높이와 같게 만드려면 div의 height를 100vh로 설정해주면 되겠죠. .element { width: 100%; height: 100vh; }

IT 웹개발/CSS 2022.01.15

[spring 에러] Argument [RedirectAttributes] is of type Model or Map but is not assignable from the actual model.

[오류] java.lang.IllegalStateException: Argument [RedirectAttributes] is of type Model or Map but is not assignable from the actual model. You may need to switch newer MVC infrastructure classes to use this argument. org.springframework.web.bind.annotation.support.HandlerMethodInvoker.resolveHandlerArguments(HandlerMethodInvoker.java:322) org.springframework.web.bind.annotation.support.HandlerMeth..

728x90
반응형
LIST