목록전체 글 (7)
작심삼일

OS : Apple M1 Pro Docker Linux Image : Oracle Linux 7.9 설치 - JDK-1.8 - apache-tomcat 8.5 - httpd 2.4.53 위 3개의 파일을 설치해서 war 소스를 배포할 예정이다. -- 자바설치 1. jdk-8u311-linux-x64.tar.gz를 다운로드 받아서, 서버에 넣어놨다. 2. tar -xvzf jdk-8u311-linux-x64.tar.gz 를 실행하여 압축을 푼다. 3. /usr/local/ 하위로 압축 푼 폴더를 이동시킨다. 4. vi ~/.bash_profile 에 자바 path를 넣는다. PATH=$PATH:$HOME/bin:$JAVA_HOME/bin export PATH export JAVA_HOME="/usr/loc..

도커를 설치하고, 마리아 디비 설치 완료. 기존의 맥에서 brew를 통해서, 마리아디비를 설치하였으나 계속 되는 오류로 인해서 제거하였다 ㅠㅠ 설치는 문제없이 진행되었으나, 실행이 되지않는다.. ㅠ 어차피 도커를 사용하는게 좋다고 하니 도커쓰자.
spring boot 프로젝트 기본 개발 환경을 구성중이었다. spring boot 2.6.3 java 1.8 war 위 사양을 설정하고, 기본 crud 작업 중 아래와 같은 오류로 list 객체가 json으로 반환되지않는 문제발생 no serializer found for class com.klcube.nqa.sample.vo.samplevo and no properties discovered to create beanserializer 확인해보니 vo쪽에 @Getter, @Setter 를 설정하였으나 제대로 적용되지 않는 문제 였다. package com.klcube.nqa.sample.vo; import lombok.Getter; import lombok.Setter; @Getter @Setter ..
var data = [{'a' : 1, 'b' : 2},{'a' : 1, 'b' : 2},{'a' : 1, 'b' : 2}] $.ajax({ url : url, type : 'post', dataType : 'json', data : JSON.stringify(data), contentType: 'application/json', beforeSend : function(){ }, success : function(res) { } }); @RequestMapping(value = url, method = {RequestMethod.POST,RequestMethod.GET}) @ResponseBody public ModelAndView saveBibReadListJson(@RequestBody VO para..
AOP (Aspect-Oriented Programming)는 기존의 여러 미들웨어 환경 (예 : J2EE) 또는 개발 환경 (예 : JBuilder, Eclipse)을 향상시킬 수있는 프로그래밍 기술입니다. aopalliance.sourceforge.net/aopalliance.sourceforge.net/motivations.html AOP Alliance aopalliance.sourceforge.net