728x90

1. 잘 팔리는 것으로 시작함

--> 처음에 어떤 상품을 올렸는데 팔렸고 그래서 그 상품의 최저가격을 찾아서 하니까 마진이 계속 올라감

 ※ 네이버 스마트스토어 기준 최저가를 찾아야했기에, 최저가격은 다른곳에서 찾아와야함.

2. 유통기한만 길고 배송만 빠르면 됨

3. 물건은 대기업 물품이 많아서 특별히 설명하지 않아도 되었음

4. 힘들었던 점은? 전화 불통(문자, 네이버 톡톡으로 상담)

728x90

'잡다' 카테고리의 다른 글

[재테크] 슈퍼개미 4강  (0) 2021.02.01
[재테크] 슈퍼개미 3강  (0) 2021.01.30
[재테크] 슈퍼개미 1강,2강  (0) 2021.01.27
[재테크] 월급만 믿다 벼락 거지?  (0) 2021.01.27
[제테크]미국 주식  (0) 2020.10.05
728x90

출처:https://helols.tistory.com/m/15

local이라 하면 일반적으로 서버를 의미하는 것이겠죠..
Local IP : <%=request.getLocalAddr()%>
Local Name : <%=request.getLocalName()%>
Local Port : <%=request.getLocalPort()%>

클라이언트의 정보입니다.
IP, Host, Port를 가져올 수 있습니다.
Remote IP : <%=request.getRemoteAddr()%>
Remote Host : <%=request.getRemoteHost()%>
Remote Port : <%=request.getRemotePort()%>

서버 이름과 포트가 있는데요.. 일반적으로 local 기본정보와 동일하겠죠..
Server Name : <%=request.getServerName()%>
Server Port : <%=request.getServerPort()%>

지역 정보입니다. 대부분 한국을 의미하는 ko가 나올 것 같네요..
Locale : <%=request.getLocale()%>

사용하는 프로토콜입니다. "프로토콜/메이저버전.마이너버전" 의 형태입니다.
Protocol : <%=request.getProtocol()%>

http, https, ftp와 같은 것을 의미합니다.
Scheme : <%=request.getScheme()%>

https와 같은 보안 채널의 사용 여부입니다. true/false 값으로 되어 있네요..
Secure Channel : <%=request.isSecure()%>

요청에 대한 URI, URL, 컨텍스트 경로, 서블릿 경로, GET/POST등의 메소드를 나타냅니다.
Request's URI : <%=request.getRequestURI()%>
Request's URL : <%=request.getRequestURL()%>
Context Path : <%=request.getContextPath()%>
Servlet Path : <%=request.getServletPath()%>
Method : <%=request.getMethod()%>

세션 ID에 대한 정보들입니다.
Session ID : <%=request.getRequestedSessionId()%>
Session ID from Cookie : <%=request.isRequestedSessionIdFromCookie()%>
Session ID from URL : <%=request.isRequestedSessionIdFromURL()%>
Session ID is still valid : <%=request.isRequestedSessionIdValid()%>

Header 정보를 보는 방법입니다.
<%
 Enumeration eHeader = request.getHeaderNames();
 while (eHeader.hasMoreElements()) {
  String hName = (String)eHeader.nextElement();
  String hValue = request.getHeader(hName);

  out.println(hName + " : " + hValue);
 }
%>

Request 객체를 통해서 쿠키 정보를 보는 방식이구요~
<%
 Cookie cookies[] = request.getCookies();
 for (int i=0; i < cookies.length; i++) {
  String name = cookies[i].getName();
  String value = cookies[i].getValue();

  out.println(name + " : " + value);
 }
%>

HTML 폼을 통해 넘어온 데이터를 받는 부분입니다.
<%
 Enumeration eParam = request.getParameterNames();
 while (eParam.hasMoreElements()) {
  String pName = (String)eParam.nextElement();
  String pValue = request.getParameter(pName);

  out.println(pName + " : " + pValue);
 }
%>

미리 설정한 attribute를 가져오는 부분이구요..
<%
 Enumeration eAttr = request.getAttributeNames();
 while (eAttr.hasMoreElements()) {
  String aName = (String)eAttr.nextElement();
  String aValue = request.getHeader(aName);

  out.println(aName + " : " + aValue);
 }
%>

728x90

'IT > MiddleWare(WEB WAS)' 카테고리의 다른 글

OutOfMemory 에 대한 고찰  (0) 2021.01.13
[JAVA]JVM GC관련 기본 옵션  (0) 2021.01.11
[JEUS]JEUS 7,8 WEBADMIN IP 접속 제한  (0) 2020.12.29
[WEBTOB/JEUS]cookie SameSite 이슈 (chrome 80)  (0) 2020.12.22
[JAVA]java agent??  (0) 2020.12.22
728x90

Server > adminServer 선택
Engine > Web Connections > ADMIN-HTTP 선택
고급선택사항 > Server Access Control 체크
> Allowed Server 에 허용할 IP기입

728x90

'IT > MiddleWare(WEB WAS)' 카테고리의 다른 글

[JAVA]JVM GC관련 기본 옵션  (0) 2021.01.11
[SEVLET] REQUEST 정보 파악  (0) 2020.12.29
[WEBTOB/JEUS]cookie SameSite 이슈 (chrome 80)  (0) 2020.12.22
[JAVA]java agent??  (0) 2020.12.22
[JAVA] BCI (Byte Code Instrumentation) ??  (0) 2020.12.22

+ Recent posts