Eggs Sunny Side Up
본문 바로가기

분류 전체보기399

[Flask] Spring으로 이미지 파일 경로 보낼 때 Python으로 파일 경로에 접근할 땐 \\ 을 사용했지만 Spring에서는 / 로 접근해야 파일 경로가 읽히는 것 같다. 그렇기에 Flask에서 Spring으로 Select한 데이터를 보낼 때는 파일 경로를 나타내는 / 로 변환해줘야 한다. img_path_list_c = [] def get_newest_file_sac(): # 현재 작업 디렉토리 가져오기 current_dir = "C:\\Users\\smhrd\\git\\MDS\\MDS\\src\\main\\webapp\\resources\\alarmCapture_c" # 경로 표시 변환 possible_img_extension = ['.jpg', '.jpeg', '.JPG', '.png'] for(root, dirs, files) in os.wal.. 2023. 8. 7.
[Python] 가장 최근 저장된 파일 불러오기 def get_newest_file_sac(): # 현재 작업 디렉토리 가져오기 current_dir = "파일 경로" # 디렉토리 내의 모든 파일 가져오기 (파일의 경로 포함) all_files = glob.glob(os.path.join(current_dir, '*')) # 파일들을 수정 시간을 기준으로 정렬 all_files.sort(key=os.path.getmtime) # 가장 최근에 저장된 파일 경로 반환 newest_file = all_files[-1] return newest_file # 함수 호출해서 가장 최근 파일 경로를 얻어옴 newest_file_path_sac = get_newest_file_sac() print("가장 최근에 저장된 파일 경로:", newest_file_path_.. 2023. 8. 5.
has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. Flask와 Spring 서버 간의 CORS 오류가 일어날 때 from flask import Flask, request, jsonify, current_app, render_template, redirect, url_for from flask.json import JSONEncoder from flask_mail import Mail, Message import glob from flask_cors import CORS app = Flask(__name__) mail = Mail(app) app.config['MAIL_SERVER'] = 'smtp.gmail.com' app.config['MAIL_PORT'] = 465 app.config['MAIL_USERNAME'] = 'moondansok66@gm.. 2023. 8. 5.
[JS] 그래프 연동 Controller // 그래프 연동 @PostMapping("/graph.com") public String graph(@RequestParam("u_id") String u_id) { Map 2023. 8. 4.
[Spring] fullcalendar DB연동 및 일자별 클릭 후 리스트 출력 jsp fullcalendar 불러오는 방법 1. CDN 주소 가져오기 https://www.jsdelivr.com/package/npm/fullcalendar 2. 파일 다운받은 후 코드 작성 https://fullcalendar.io/docs/initialize-globals DB연동 Controller package kr.mds.controller; @RestController public class mainRestController { @Autowired private UserMapper mapper; @Autowired private Security_alarm_carMapper sacmapper; @Autowired private Security_alarm_humanMapper sahmapper.. 2023. 8. 3.
[Spring] Ajax를 이용하여 알림 개수 카운트_int를 String으로 변환 Ajax /* 알림 개수 카운트 */ $.ajax({ type:'post', url: 'countAlarm.com', data : {'u_id':data}, dataType: 'text', success:function(res){ console.log(res); $('#countAlarm').append(res); $('#modal-close-btn').click(function(){ $('#countAlarm').html("0"); }) }, error: function(e){ console.log("알림 개수 왜 안넘어와"); } }) => 개수는 int로 데이터 수집을 해야하지만 Ajax는 문자형 데이터만 수집하기 때문에 dataType:'text'로 지정! RestController // 알림 개.. 2023. 8. 1.