오류 4

[보안] Oracle VirtualBox 설치하기 (feat. Visual C++ Error)

보안 공부를 위하여 가상머신을 설치해보도록 하겠습니다. 가상머신을 설치하는 이유는 다양한 운영체제를 구축할 수 있어 공부하기 좋습니다. 또한, 악성 코드 분석을 분석할 때 실제 컴퓨터에 영향이 가지않도록 하기 위함입니다. - Oracle VirtualBox 설치링크 - https://www.virtualbox.org/wiki/Downloads Downloads – Oracle VM VirtualBox Download VirtualBox Here you will find links to VirtualBox binaries and its source code. VirtualBox binaries By downloading, you agree to the terms and conditions of the re..

보안 2023.11.22

[kotiln] 따옴표 구별하기 ''(작은 따옴표), ""(큰 따옴표), ``(백틱)

자바에서 코틀린으로 넘어가며, 삽질했던 한 가지를 끄적이려고 합니다. 자바에서는 사용하지 않았던 ``(백틱) 때문에.. 하찮은 삽질을 했습니다. 백준 2675번 문제를 풀다가 생긴 일이었습니다. import java.util.Scanner fun main() { val sc:Scanner = Scanner(System.'in') repeat(sc.nextInt()){ val count = sc.nextInt() val S = sc.next() var result = "" for(i in S.indices){ repeat(count) { result += S[i] } } println(result) } } 이상한 점을 발견하셨나요? error: the expression cannot be a selecto..

kotlin 2023.08.02

[Eclipse - Spring] web.xml에서 "There are '37' errors in 'jsp_2_1.xsd'.", "cvc-id.3: A field of identity constraint 'web-app-servlet-name-uniqueness' matched element 'web-app', but this element does not have a simple type." 에러 해결

안녕하세요 개발 설정을 하기 위해 Eclipse를 다루면서 발생한 에러를 해결하였습니다. 처음 프로젝트를 생성하면 다음과 같은 에러가 나타났습니다. line 2 : There are '37' errors in 'jsp_2_1.xsd' line 19 : cvc-id.3: A field of identity constraint 'web-app-servlet-name-uniqueness' matched element 'web-app', but this element does not have a simple type. 해결 방법은 간단합니다. xsi : schemaLocation에서 url 사이 세미콜론( ; )을 추가 해주면 바로 해결 가능합니다 :)

Web 2021.03.29