본문 바로가기

두두의 IT

(172)
Spring Boot Git Open Source PageHelper
MAC + Flutter + xCode 설치 [Flutter] 1. 다운로드 페이지 접속 https://docs.flutter.dev/get-started/install/macos macOS install How to install on macOS. docs.flutter.dev 2. 아래 zip 파일 다운로드 3. Mac 터미널 창 열고 아래 명령어 따라하기 % vi ~/.zshrc export PATH=$PATH:/폴더경로/flutter/bin % source ~/.zshrc % flutter --version % flutter doctor 4. 잘 나오면 성공! [xCode] 1. AppStore에서 xCode 다운로드 오류1. CocoaPods not installed or not in valid state. 해결방법 1. 응용프로그램 > ..
Spring Boot 지원 Interface & Class Model HttpServletResponse (Interface) ServletResponse응답을 보낼 때 HTTP 관련 기능을 제공하도록 인터페이스를 확장하는 역할을 함 HTTP 응답 코드 지정이나 헤더 생성 및 바디 생성을 함 Servlet Container는 HttpServletResponse 객체를 생성하고 서블릿 서비스 메서드(doGet, doPost 등)에 인수로 전달함 Content-Type, 쿠키, Redirect 등 편의 기능도 제공함 response.setStatus(HttpServletResponse.SC_OK); response.setHeader("Content-Type", "text/plain;charset=utf-8"); PrintWriter writer = response...
String Boot Controller Annotation @Controller(value="xxx") @RequestMapping("xxx") 또는 ("/xxx")//url 값 @ResponseBody @RestController @GetMapping("xxx") 또는 @GetMapping(value="xxx") @PostMapping("xxx") @Slf4j @Autowired @PersistenceContext @PathVariable("xxx") String xxx @RequestParam(required=false, name="xxx") String xxx @RequestParam(value="xxx", required=false, defaultValue="xxx") Integer xxx @ModelAttribute("xxx") @Authenticati..
intelliJ Web Project 폴더 분석 .gradle .idea - JetBrains IDE에서 프로젝트를 만들시 생기는 폴더 - 프로젝트 설정은 각 특정 프로젝트와 함께 .idea 폴더 아래에 xml 파일 세트로 저장됨 .settings build - Gradle 기반의 프로젝트를 개발할 때 생기는 폴더 - gradle build 시 컴파일한 class 파일을 가지고 있음 ddl - SQL 파일 저장 폴더 generated - lombok을 활성화 하면서, annotation processor 옵션을 켜서 생기는 폴더 gradle module - 하나의 프로젝트 안에서 여러개의 주제가 생겨날 시 module 사용 out - Gradle 기반의 프로젝트를 개발할 때 생기는 폴더 - IntelliJ 에서 빌드시 컴파일한 class 파일을 가지고..
[220513-16] SQLD, Spring Boot 설정 [나눔] 220513 업무일지 1. 나눔in 제품 대회 스폰용 일러스트레이션 디자인 2. SQLD 공부 [나눔] 220516 업무일지 1. 소셜 로그인 설정 변경 2. IntelliJ – PostgreSQL DB 연결 3. 나눔in, GSCM 웹 서비스 수정사항 파악 및 코드 분석 https://jyj98020.tistory.com/365 intelliJ Web Project 폴더 분석 .gradle .idea - JetBrains IDE에서 프로젝트를 만들시 생기는 폴더 - 프로젝트 설정은 각 특정 프로젝트와 함께 .idea 폴더 아래에 xml 파일 세트로 저장됨 .settings build - Gradle 기반의 프로젝트를 개발할.. jyj98020.tistory.com 4. SQLD 공부 개발할 때..
[220509-12] Spring Boot 오류/설정, SQLD [나눔] 220509 업무일지 1. 나눔in 소스코드 실행 오류 해결 https://jyj98020.tistory.com/358 IntelliJ에서 xxx.jsp 직접 실행 오류 문제 Please, configure Web Facet first! 해결방법 1. File > Project Structure > Project Settings > Facets > Add > Web jyj98020.tistory.com https://jyj98020.tistory.com/357 Spring Boot + JSP + IntelliJ 주의사항 [프로젝트 Open시 Root 파악하여 Open] => 프로젝트의 Root는 어떤 폴더인가요? ex) 아래 사진과 같이 2022 폴더 내에 app, web폴더가 있을 시 web ..
IntelliJ에서 xxx.jsp 직접 실행 오류 문제 Please, configure Web Facet first! 해결방법 1. File > Project Structure > Project Settings > Facets > Add > Web

LIST