전체 글(746)
-
Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:2.4.3:repackage (repackage) on project demo: Execution repackage of goal org.springframework.boot:spring-boot-maven-plugin:2.4.3:repackage failed: Unable to find a single main clas..
Maven build 수행시 저 에러발생 여러가지 해보다, Maven clean 수행후부터 발생 안함
2021.03.15 -
'dependencies.dependency.systemPath' for abc:jar must specify an absolute path but is ${project.basedir}\src\main\webapp\WEB-INF\lib\abc.jar
systemPath 태그에서는 절대경로만 지원되다고 함 properties 태그에 project.basedir에 절대경로를 넣어서 해결 11 절대경로 jdom jdom 1.0 system ${project.basedir}\src\main\webapp\WEB-INF\lib\jaxen-jdom.jar
2021.03.14 -
정규식 사용하기
데이터 형식 : 592/? ((9003,4707),(9012,4719)) import re p = re.search(' (\d+)/(.) \(\((\d+),(\d+)\),\((\d+),(\d+)',line) print(p.groups()) boxData = p.groups() 데이터 형식 : /aaa/bbb/99 max = '/aaa/bbb/99' max = re.search('/(\d+)$',max) print(max) print(max.groups()) print(max.group(0)) print(max.group(1)) 결과 ('99',) /99 99
2021.03.13 -
파일이 존재하면, 마지막 라인을 읽어오기
if os.path.isfile(boxFile) : with open(boxFile, 'r', encoding='utf8') as f : lines = f.readlines() data = lines[len(lines)-1].split(' ') x = int(data[1]) y = imageHeight - int(data[4]) width = int(data[3]) - x height = imageHeight - y - int(data[2]) x += width + space newImage = pil.Image.open(imageFile)
2021.03.13 -
Django get_or_create
조회한 결과가 없으면 신규로 row 생성 isCreated : 신규로 생성되면 True, 이미 존재한 데이터면 False testedData,isCreated = Tested_Data.objects.get_or_create(name=fileName,dir=dir)
2021.03.11 -
Django django.db.utils import OperationalError
filter 결과가 없는 경우 발생 boxes.count()를 실행하면 예외 발생 try : boxes.count() train.makeImage(boxes, 'special') except OperationalError : print('테이터가 없습니다.')
2021.03.10