공지사항
인기 글
-
Flutter 환경설정 1
1. Flutter SDK 다운로드 https://docs.flutter.dev/get-started/install/windows Windows install How to install on Windows. docs.flutter.dev 2. 원하는 위치에 압축을 풀어 주기 ex) C:\flutter 아시는 부분이겠지만 경로상에는 한글이 존재해서는 안됩니다. 이유는 한글 인식 못함 3. 환경 변수 지정 저의 컴퓨터 기준으로 C:\flutter\bin을 변수로 등록합니다. 3. Flutter doctor 실행 플렛폼 종속성이 있는지 확인합니다. cmd를 실행하여 실행하여 여러가지 Flutter에 대한 설치 보고서가 출력됩니다. C:\src\flutter>flutter doctor 이 경우에는 안드로이드 스..
-
[전자정부프레임워크] paginationtag 페이징 처리
Controller.java @RequestMapping(value={"index.do", "list.do"}) public String LectureList(HttpServletRequest request, Model model , @RequestParam(value="srchType", required=false) String srchType , @RequestParam(value="srchWord", required=false) String srchWord) throws Exception { // 전자정부프레임워크 페이징 연습 int currentPageNo = request.getParameter("curPage")==null? 1:Integer.parseInt(request.getParamete..
-
우분투 자바 셋팅을 위한 사이트
1. 기본베이스로 찾아본 셋팅 사이트 ( https://goyunji.tistory.com/91 ) 2. JAVA_HOME 셋팅을 위해 다시 찾아본 페이지 ( https://m.blog.naver.com/dktmrorl/222034123157 ) 3. IP방화벽(AWS), apache2, tomcat 연동 때문에 본 사이트 ( https://goyunji.tistory.com/93 ) 4. Virtualbox로 구축된 서버를 확인하기 위한 사이트 ( https://noota.tistory.com/53 ) 5. Ubuntu mariaDB 설치 및 초기 설정 ( https://m.blog.naver.com/6116949/221992559683 )
-
[JavaScript] Ajax 옛날방식과 요즘방식
1. 옛날방식 * XMLHttpRequest 2. 요즘JS방식 fetch('https://www.naver.com/*.json') .then((response) => { if(!response.ok) { throw new Error('400 or 500'); } return response.json(); }) .then((결과) => { console.log(결과); }) .catch(() => { console.log('에러'); }) * fetch 위와 같이 then함수 붙는 건 지져분해서 싫다고 할때는 아래와 같이 async function getDataFun() { var response = await fetch('https://www.naver.com'); if(!response.ok) { th..
최신 글
-
-
-
Java 16 패턴 변수카테고리 없음 2024.01.05 13:20
- 패턴 변수의 예시 if (obj instanceof String) { String str = (String) obj; System.out.println(str); } // 아래와 같이 변경 가능 if (obj instanceof String str) { System.out.println(str); } - 실제 프로젝트에서 쓰인 코드 if (authentication != null && authentication.getPrincipal() instanceof User) { User currentUser = (User) authentication.getPrincipal(); request.setAttribute("currentUser", currentUser); } // 아래와 같이 변경 if (auth..
-
[오류기록] (추가내용) Driver net.sf.log4jdbc.sql.jdbcapi.DriverSpy claims to not accept jdbcUrl개발 2023.12.13 13:24
Driver net.sf.log4jdbc.sql.jdbcapi.DriverSpy claims to not accept jdbcUrl 에러 발생 배경 - 스프링부트 3.2.0으로 개발 후 war파일로 카페24에 배포하는 도중에 발생 발생 당시 로그Cause: java.lang.RuntimeException: Driver net.sf.log4jdbc.sql.jdbcapi.DriverSpy claims to not accept jdbcUrl, jdbc:log4jdbc:mariadb://localhost:3306/0000 at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30) ~[mybatis-3..