inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

묻고 답해요

173만명의 커뮤니티!! 함께 토론해봐요.

@Rollback 설정 이후 insert query 발생 시 Null in ID column 에러

미해결

실전! 스프링 부트와 JPA 활용1 - 웹 애플리케이션 개발

안녕하세요, 강의를 따라하던 도중, 회원가입 테스트 코드에 @Rollback(false)를 설정하니 insert쿼리가 나가는걸 확인했습니다. 다만 console 로그에는 id값이 1로 mapping이 된걸 보았는데, 그 바로 직후 ID에 Null이 들어왔단 에러를 마주하였습니다. 조언을 구하고자 질문 남깁니다. 2019-12-29 19:42:39.261 INFO 77766 --- [ main] p6spy : #1577616159261 | took 0ms | statement | connection 4| url jdbc:h2:tcp://localhost/~/jpashop insert into member (city, street, zipcode, name, member_id) values (?, ?, ?, ?, ?) insert into member (city, street, zipcode, name, member_id) values (NULL, NULL, NULL, 'kim', 1); 2019-12-29 19:42:39.261 WARN 77766 --- [ main] o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 23502, SQLState: 23502 2019-12-29 19:42:39.261 ERROR 77766 --- [ main] o.h.engine.jdbc.spi.SqlExceptionHelper : NULL not allowed for column "ID"; SQL statement:

  • 웹앱
  • JPA
  • spring-boot
  • java
  • spring
강민우 댓글 2 좋아요 0 조회수 676

11:52초 행렬 곱하기, 인터넷 찾아보고 해결했습니다.

해결됨

홍정모의 따라하며 배우는 C++

<참고한 자료> https://stackoverflow.com/questions/32974263/2x2-matrix-multiplication 근데 남의 꺼 따라한 거 같고 제가 한 거 같지 않아서 찝찝하네요 ㅠㅠ. 규칙 찾다가 3중 루프에는 접근했었는데 중간에 꼬여서 포기했었거든요. 거의 반나절 걸렸네요 ㅠㅠ. <code> for ( int row = 0 ; row < 2 ; ++row) { for ( int col = 0 ; col < 2 ; ++col) { for ( int k = 0 ; k < 2 ; ++k) { m3 [row][col] += m1 [row][k] * m2 [k][col]; } } cout << endl; } <output> PS C:\coding\tbc_review\TBCPP\Chapter6> g++ .\matrixByMatrix.cpp PS C:\coding\tbc_review\TBCPP\Chapter6> .\a.exe 19 22 43 50 <전체코드> #include <iostream> using namespace std ; int main () { int m1 [ 2 ][ 2 ] { { 1 , 2 }, { 3 , 4 }, }; int m2 [ 2 ][ 2 ] { { 5 , 6 }, { 7 , 8 }, }; int m3 [ 2 ][ 2 ] = { 0 }; // int m3[2][2] = {{1,2},{3,4}}; // m3[0][0] = m1[0][0] * m2[0][0] + m1[0][1] * m2[1][0]; // m3[0][1] = m1[0][0] * m2[0][1] + m1[0][1] * m2[1][1]; // m3[1][0] = m1[1][0] * m2[0][0] + m1[1][1] * m2[1][0]; // m3[1][1] = m1[1][0] * m2[0][1] + m1[1][1] * m2[1][1]; // int sum = 0; for ( int row = 0 ; row < 2 ; ++row) { for ( int col = 0 ; col < 2 ; ++col) { for ( int k = 0 ; k < 2 ; ++k) { m3 [row][col] += m1 [row][k] * m2 [k][col]; } } cout << endl; } // cout << multiplyTemp1 << " "; // cout << endl; /* m3 = [00, 01] [10, 11] * */ for ( int row = 0 ; row < 2 ; ++row) { for ( int col = 0 ; col < 2 ; ++col) { cout << m3 [row][col] << ' \t ' ; } cout << endl; } // for (int i = 0; i < 2; ++i) // { // for (int j = 0; j < 2; ++j) // { // // {1, 2} {5, 6} // // {3, 4} {7, 8} // m3[i][j] = m1[i][j] * m2[j][i] + m1[i][j + 1] * m2[j + 1][i]; // cout << m3[i][j] << "\t"; // } // cout << endl; // } return 0 ; }

  • C++
호두 댓글 1 좋아요 3 조회수 360

print가 이상해요

미해결

프로그래밍 시작하기 : 파이썬 입문 (Inflearn Original)

첫째날에 첨부터따라할댄 print 가 되었는데 둘째날에 새파일로 열고 print 치면 안되요.. 초록색으로 음영으로도 안바뀌고..기능을 안하는 것 처럼 보여요

  • python
planaria2 댓글 2 좋아요 0 조회수 288

11:52 행렬x행렬 for문에서 막히네요.

해결됨

홍정모의 따라하며 배우는 C++

2시간 동안 고민해봤지만 힘드네요. 계속 시도는 해보겠습니다. <code> #include <iostream> using namespace std ; int main () { int m1 [ 2 ][ 2 ] { { 1 , 2 }, { 3 , 4 }, }; int m2 [ 2 ][ 2 ] { { 5 , 6 }, { 7 , 8 }, }; int m3 [ 2 ][ 2 ] = { 0 }; // int m3[2][2] = {{1,2},{3,4}}; // m3[0][0] = m1[0][0] * m2[0][0] + m1[0][1] * m2[1][0]; // m3[0][1] = m1[0][0] * m2[0][1] + m1[0][1] * m2[1][1]; // m3[1][0] = m1[1][0] * m2[0][0] + m1[1][1] * m2[1][0]; // m3[1][1] = m1[1][0] * m2[0][1] + m1[1][1] * m2[1][1]; int multiplyTemp1; int multiplyTemp2; for ( int row = 0 ; row < 2 ; ++row) { for ( int col = 0 ; col < 2 ; ++col) { m3 [row][row] += m1 [row][col] * m2 [col][row]; // if (row == 0 || row == 1) // { // multiplyTemp1 += m1[row][col] * m2[col][row]; // } } cout << endl; } // cout << multiplyTemp1 << " "; // cout << endl; /* m3 = [00, 01] [10, 11] * */ for ( int row = 0 ; row < 2 ; ++row) { for ( int col = 0 ; col < 2 ; ++col) { cout << m3 [row][col] << ' \t ' ; } cout << endl; } // for (int i = 0; i < 2; ++i) // { // for (int j = 0; j < 2; ++j) // { // // {1, 2} {5, 6} // // {3, 4} {7, 8} // m3[i][j] = m1[i][j] * m2[j][i] + m1[i][j + 1] * m2[j + 1][i]; // cout << m3[i][j] << "\t"; // } // cout << endl; // } return 0 ; } <output> PS C:\coding\tbc_review\TBCPP\Chapter6> g++ .\matrixByMatrix.cpp PS C:\coding\tbc_review\TBCPP\Chapter6> .\a.exe 19 0 0 50 \ 형태로 대각 성분만 억지로 끼워맞췄습니다. ㅠㅠ 감사합니다.

  • C++
호두 댓글 1 좋아요 0 조회수 219

반복문 (for)에서 질문 ㅡ있습니다

미해결

남박사의 파이썬 기초부터 실전 100% 활용

좋은 강의 들려주셔서 감사합니다 list ( i . items ( ) ) [ 0 ] 이 왜 배열의 요소를 튜플로 가져오나요 i의 item은 딕셔너리고 그것을 리스트로 형변환한것의 0번쨰 요소를 가져온것인데 리스트가 튜플로 바뀌는 메커니즘을 모르겠습니다

  • 웹-크롤링
  • python
윤태영 댓글 1 좋아요 2 조회수 248

MinGW installation manager를 어디서 열어야 하나요?

해결됨

홍정모의 따라하며 배우는 C++

안녕하세요! 선생님 말씀하신 옵션으로 코드블럭스를 설치했는데, MinGW installation manager를 어떻게 열어야하는지 모르겠습니다.. 당장은 visual studio로 공부하겠지만, 차후에 학교 과제를 할 때 code blocks도 많이 이용된다고 해서 gdb를 설치해두고 싶은데, installation manager를 어디서 열어야 하나요??

  • C++
삼다 댓글 2 좋아요 0 조회수 428

테이블 생성시 foreign key 생성에 대한 부분을 설정할 수 있나요?

미해결

실전! 스프링 부트와 JPA 활용1 - 웹 애플리케이션 개발

JPA 에서 DB 생성시 joincolumn 을 지정해 놓은 것을 foreign key 로 생성해 준다고 하셨는데요. 혹시 설정을 통해 제어할 수 있나요? 전체적으로 생성을 못하게 한다든지 어떤 column 은 FK 로 잡아주고 어떤 column 은 무시하고 개별적으로도 설정이 가능한지 궁금합니다.^^ 좋은 강의 감사드립니다.

  • java
  • JPA
  • 웹앱
  • spring
  • spring-boot
JH K 댓글 2 좋아요 0 조회수 368

DOMscript파트 강의자료

미해결

인터랙티브 웹 개발 제대로 시작하기

강사님 강의 재밌게 잘보고있습니다! DOMscript1부터 같이 따라해보고싶은데 수업자료가 없네용 첨부해주시면 감사하겠습니다.

  • HTML/CSS
  • 인터랙티브-웹
  • javascript
znffjdznffjd 댓글 2 좋아요 0 조회수 436

JpaRepository에서 리턴타입 문의입니다.

미해결

스프링 부트 개념과 활용

안녕하세요. findUsername에서 Optional을 사용하셔서 이에 관련하여 질문을 하고 싶습니다. 1. JpaRepository에서 메서드를 추가 할 때, Optional을 사용하는 것이 더 나은 방법인지 2. 강사님은 어떤 방식으로 주로 사용하셨는지 입니다. 아래 내용은 이 질문을 하게 된 참조입니다. - findById 리턴값이 Optional임을 확인 - stackoverflow로 분위기( https://stackoverflow.com/questions/25883608/why-is-spring-data-still-using-null-references-as-return-values)

  • spring
  • java
  • spring-boot
거울이 댓글 1 좋아요 0 조회수 419

임베디드 타입과 @MappedSuperclass 차이

해결됨

자바 ORM 표준 JPA 프로그래밍 - 기본편

안녕하세요 jpa강좌를 수강중인 학생입니다. 임베디드 타입 관련 강의를 듣던 중에 궁금한 점이 생겨 질문 드립니다. 강의 중에 CreatedDate나 UpdatedDate와 같은 변수를 임베디드 타입으로 정의하는 경우와 @MappedSuperclass를 사용하는 경우 모두 실습으로 확인하였습니다. @MappedSuperclass로 정의하면 Entity로 정의하는 것이고 여러 Entity에 공통적으로 적용해야 할때 사용할 수 있고 임베디드 타입으로 정의하면 Value 타입으로 정의하는 것이고 비슷한 속성을 가지는 애트리뷰트를 하나의 값으로 만들어 재사용성을 높일 수 있는 방법이라고 이해했습니다. 그렇다면 CreatedDate와 같은 변수는 실무에서 @MappedSuperclass를 사용하는지 아니면 임베디드 타입으로 정의하는지 알고 싶습니다. 유익한 강좌 감사드립니다!

  • JPA
  • java
허진호 댓글 1 좋아요 10 조회수 1191

11:52 행렬x행렬 하드 코딩으로 해봤습니다.

미해결

홍정모의 따라하며 배우는 C++

<code> #include <iostream> using namespace std ; int main () { int m1 [ 2 ][ 2 ] { { 1 , 2 }, { 3 , 4 }, }; int m2 [ 2 ][ 2 ] { { 5 , 6 }, { 7 , 8 }, }; int m3 [ 2 ][ 2 ] = { 0 ,}; m3 [ 0 ][ 0 ] = m1 [ 0 ][ 0 ] * m2 [ 0 ][ 0 ] + m1 [ 0 ][ 1 ] * m2 [ 1 ][ 0 ]; m3 [ 0 ][ 1 ] = m1 [ 0 ][ 0 ] * m2 [ 0 ][ 1 ] + m1 [ 0 ][ 1 ] * m2 [ 1 ][ 1 ]; m3 [ 1 ][ 0 ] = m1 [ 1 ][ 0 ] * m2 [ 0 ][ 0 ] + m1 [ 1 ][ 1 ] * m2 [ 1 ][ 0 ]; m3 [ 1 ][ 1 ] = m1 [ 1 ][ 0 ] * m2 [ 0 ][ 1 ] + m1 [ 1 ][ 1 ] * m2 [ 1 ][ 1 ]; for ( int row = 0 ; row < 2 ; ++row) { for ( int col = 0 ; col < 2 ; ++col) { cout << m3 [row][col] << ' \t ' ; } cout << endl; } // for (int i = 0; i < 2; ++i) // { // for (int j = 0; j < 2; ++j) // { // // {1, 2} {5, 6} // // {3, 4} {7, 8} // m3[i][j] = m1[i][j] * m2[j][i] + m1[i][j + 1] * m2[j + 1][i]; // cout << m3[i][j] << "\t"; // } // cout << endl; // } return 0 ; } <결과> PS C:\coding\tbc_review\TBCPP\Chapter6> g++ .\matrixByMatrix.cpp PS C:\coding\tbc_review\TBCPP\Chapter6> .\a.exe 19 22 0 0 PS C:\coding\tbc_review\TBCPP\Chapter6> g++ .\matrixByMatrix.cpp PS C:\coding\tbc_review\TBCPP\Chapter6> .\a.exe 19 22 43 50 이제 저걸 for문으로 출력해보겠습니다.

  • C++
호두 댓글 1 좋아요 0 조회수 206

junit4와 junit5를 같이 써도 되는지?

미해결

더 자바, 애플리케이션을 테스트하는 다양한 방법

spring-boot 2.1.5를 쓰는데 기존 코드에 junit4가 있어서 vintage를 넣어서 junit5코드도 같이 쓰려고 했는데 잘 안되었던 것 같아요. 영상에서 vintage 를 exclusion 시키셨는데 그래서일까요?

  • ArchUnit
  • testcontainers
  • java
  • JUnit
  • Chaos-Monkey
  • JMeter
  • mockito
옛동료 댓글 1 좋아요 1 조회수 300

템플릿 관련 질문입니다.

해결됨

인스타그램 클론 - full stack 웹 개발

삭제된 글입니다

  • HTML/CSS
  • python
  • django
  • 클론코딩
hugh 댓글 3 좋아요 1 조회수 54

셀레늄 파이어폭스 실행 오류가 발생합니다 !

미해결

R로 하는 웹 크롤링 - 실전편

이렇게 오류가 뜨고 브라우저 실행이 안됩니다 ....ㅠㅠ 파이어폭스도 설치했는데 왜그럴까요

  • 웹-크롤링
  • R
이건희 댓글 2 좋아요 0 조회수 344

atom 설치가 되지 않습니다..

미해결

프로그래밍 시작하기 : 파이썬 입문 (Inflearn Original)

안녕하세요 수업때 안내해주신대로 atom 설치파일 다운로드 후 설치를 하려하는데 계속 오류가 발생하여 구글링하고 조치를 해봐도 개선되지를 않아서 질문올립니다.. 2017-02-14 16:42:32> Program: Starting Squirrel Updater: --install . 2017-02-14 16:42:32> Program: Starting install, writing to C:\Users\chocopks\AppData\Local\SquirrelTemp 2017-02-14 16:42:32> Program: About to install to: C:\Users\chocopks\AppData\Local\JandiApp 2017-02-14 16:42:32> CheckForUpdateImpl: Couldn't write out staging user ID, this user probably shouldn't get beta anything: System.IO.DirectoryNotFoundException: 'C:\Users\chocopks\AppData\Local\JandiApp\packages\.betaId' 경로의 일부를 찾을 수 없습니다. 위치: System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) 위치: System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) 위치: System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) 위치: System.IO.StreamWriter.CreateFile(String path, Boolean append, Boolean checkHost) 위치: System.IO.StreamWriter..ctor(String path, Boolean append, Encoding encoding, Int32 bufferSize, Boolean checkHost) 위치: System.IO.File.InternalWriteAllText(String path, String contents, Encoding encoding, Boolean checkHost) 위치: System.IO.File.WriteAllText(String path, String contents, Encoding encoding) 위치: Squirrel.UpdateManager.CheckForUpdateImpl.getOrCreateStagedUserId() 2017-02-14 16:42:32> CheckForUpdateImpl: Failed to load local releases, starting from scratch: System.IO.DirectoryNotFoundException: 'C:\Users\chocopks\AppData\Local\JandiApp\packages\RELEASES' 경로의 일부를 찾을 수 없습니다. 위치: System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) 위치: System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) 위치: System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share) 위치: Squirrel.Utility.LoadLocalReleases(String localReleaseFile) 위치: Squirrel.UpdateManager.CheckForUpdateImpl.<CheckForUpdate>d__2.MoveNext() 2017-02-14 16:42:32> CheckForUpdateImpl: Reading RELEASES file from C:\Users\chocopks\AppData\Local\SquirrelTemp 2017-02-14 16:42:32> CheckForUpdateImpl: First run or local directory is corrupt, starting from scratch 2017-02-14 16:42:32> ApplyReleasesImpl: Writing files to app directory: C:\Users\chocopks\AppData\Local\JandiApp\app-0.11.2 2017-02-14 16:42:35> ApplyReleasesImpl: Squirrel Enabled Apps: [C:\Users\chocopks\AppData\Local\JandiApp\app-0.11.2\jandiapp.exe] 2017-02-14 16:42:39> ApplyReleasesImpl: Starting fixPinnedExecutables 2017-02-14 16:42:39> ApplyReleasesImpl: Examining Pin: Chrome.lnk 2017-02-14 16:42:39> ApplyReleasesImpl: Examining Pin: GOM.EXE.lnk 2017-02-14 16:42:39> ApplyReleasesImpl: Examining Pin: Internet Explorer.lnk 2017-02-14 16:42:39> ApplyReleasesImpl: Examining Pin: Microsoft Excel 2010.lnk 2017-02-14 16:42:39> ApplyReleasesImpl: Examining Pin: Microsoft PowerPoint 2010.lnk 2017-02-14 16:42:39> ApplyReleasesImpl: Examining Pin: Notepad++.lnk 2017-02-14 16:42:39> ApplyReleasesImpl: Examining Pin: sqldeveloper.lnk 2017-02-14 16:42:39> ApplyReleasesImpl: Examining Pin: Windows Explorer.lnk 2017-02-14 16:42:39> ApplyReleasesImpl: Examining Pin: 곰오디오.lnk 2017-02-14 16:42:39> ApplyReleasesImpl: Examining Pin: 한글과컴퓨터 한글 2007.lnk 2017-02-14 16:42:39> ApplyReleasesImpl: Fixing up tray icons 2017-02-14 16:42:39> ApplyReleasesImpl: Couldn't rewrite shim RegKey, most likely no apps are shimmed: System.NullReferenceException: 개체 참조가 개체의 인스턴스로 설정되지 않았습니다. 위치: Squirrel.UpdateManager.ApplyReleasesImpl.<unshimOurselves>b__13_0(RegistryView view) 2017-02-14 16:42:39> ApplyReleasesImpl: Couldn't rewrite shim RegKey, most likely no apps are shimmed: System.NullReferenceException: 개체 참조가 개체의 인스턴스로 설정되지 않았습니다. 위치: Squirrel.UpdateManager.ApplyReleasesImpl.<unshimOurselves>b__13_0(RegistryView view) 2017-02-14 16:42:39> ApplyReleasesImpl: cleanDeadVersions: for version 0.11.2 2017-02-14 16:42:39> ApplyReleasesImpl: cleanDeadVersions: exclude folder app-0.11.2 2017-02-14 16:42:39> InstallHelperImpl: Couldn't write uninstall icon, don't care: System.Net.WebException: 'C:\dev\jandi_desktop\resources\windows\jandi.ico' 경로의 일부를 찾을 수 없습니다. ---> System.Net.WebException: 'C:\dev\jandi_desktop\resources\windows\jandi.ico' 경로의 일부를 찾을 수 없습니다. ---> System.IO.DirectoryNotFoundException: 'C:\dev\jandi_desktop\resources\windows\jandi.ico' 경로의 일부를 찾을 수 없습니다. 위치: System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) 위치: System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) 위치: System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy) 위치: System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync) 위치: System.Net.FileWebStream..ctor(FileWebRequest request, String path, FileMode mode, FileAccess access, FileShare sharing, Int32 length, Boolean async) 위치: System.Net.FileWebResponse..ctor(FileWebRequest request, Uri uri, FileAccess access, Boolean asyncHint) --- 내부 예외 스택 추적의 끝 --- 위치: System.Net.FileWebResponse..ctor(FileWebRequest request, Uri uri, FileAccess access, Boolean asyncHint) 위치: System.Net.FileWebRequest.GetResponseCallback(Object state) --- 내부 예외 스택 추적의 끝 --- 위치: System.Net.FileWebRequest.EndGetResponse(IAsyncResult asyncResult) 위치: System.Net.WebClient.GetWebResponse(WebRequest request, IAsyncResult result) 위치: System.Net.WebClient.DownloadBitsResponseCallback(IAsyncResult result) --- 예외가 throw된 이전 위치의 스택 추적 끝 --- 위치: System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) 위치: System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) 위치: System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(Task task) 위치: Squirrel.UpdateManager.InstallHelperImpl.<CreateUninstallerRegistryEntry>d__5.MoveNext() 2017-03-21 08:28:01> Program: Starting Squirrel Updater: --install . 2017-03-21 08:28:01> Program: Starting install, writing to C:\Users\chocopks\AppData\Local\SquirrelTemp 2017-03-21 08:28:01> Program: About to install to: C:\Users\chocopks\AppData\Local\atom 2017-03-21 08:28:01> CheckForUpdateImpl: Couldn't write out staging user ID, this user probably shouldn't get beta anything: System.IO.DirectoryNotFoundException: 'C:\Users\chocopks\AppData\Local\atom\packages\.betaId' 경로의 일부를 찾을 수 없습니다. 위치: System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) 위치: System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) 위치: System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) 위치: System.IO.StreamWriter.CreateFile(String path, Boolean append, Boolean checkHost) 위치: System.IO.StreamWriter..ctor(String path, Boolean append, Encoding encoding, Int32 bufferSize, Boolean checkHost) 위치: System.IO.File.InternalWriteAllText(String path, String contents, Encoding encoding, Boolean checkHost) 위치: System.IO.File.WriteAllText(String path, String contents, Encoding encoding) 위치: Squirrel.UpdateManager.CheckForUpdateImpl.getOrCreateStagedUserId() 2017-03-21 08:28:01> CheckForUpdateImpl: Failed to load local releases, starting from scratch: System.IO.DirectoryNotFoundException: 'C:\Users\chocopks\AppData\Local\atom\packages\RELEASES' 경로의 일부를 찾을 수 없습니다. 위치: System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) 위치: System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) 위치: System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share) 위치: Squirrel.Utility.LoadLocalReleases(String localReleaseFile) 위치: Squirrel.UpdateManager.CheckForUpdateImpl.<CheckForUpdate>d__2.MoveNext() 2017-03-21 08:28:01> CheckForUpdateImpl: Reading RELEASES file from C:\Users\chocopks\AppData\Local\SquirrelTemp 2017-03-21 08:28:01> CheckForUpdateImpl: First run or local directory is corrupt, starting from scratch 2017-03-21 08:28:02> ApplyReleasesImpl: Writing files to app directory: C:\Users\chocopks\AppData\Local\atom\app-1.15.0 2017-03-21 08:28:02> LogHost: Rigging execution stub for lib/net45/atom_ExecutionStub.exe to C:\Users\chocopks\AppData\Local\atom\atom.exe 2017-03-21 08:28:02> LogHost: Rigging execution stub for lib/net45/resources/app/apm/bin/node_ExecutionStub.exe to C:\Users\chocopks\AppData\Local\atom\app-1.15.0\resources\app\apm\node.exe 2017-03-21 08:28:05> LogHost: Rigging execution stub for lib/net45/resources/app.asar.unpacked/node_modules/symbols-view/vendor/ctags-win32_ExecutionStub.exe to C:\Users\chocopks\AppData\Local\atom\app-1.15.0\resources\app.asar.unpacked\node_modules\symbols-view\ctags-win32.exe 2017-03-21 08:28:07> ApplyReleasesImpl: Squirrel Enabled Apps: [C:\Users\chocopks\AppData\Local\atom\app-1.15.0\atom.exe] 2017-03-21 08:28:12> ApplyReleasesImpl: Starting fixPinnedExecutables 2017-03-21 08:28:12> ApplyReleasesImpl: Examining Pin: Chrome.lnk 2017-03-21 08:28:12> ApplyReleasesImpl: Examining Pin: eclipse.exe.lnk 2017-03-21 08:28:12> ApplyReleasesImpl: Examining Pin: Internet Explorer.lnk 2017-03-21 08:28:12> ApplyReleasesImpl: Examining Pin: LINE.lnk 2017-03-21 08:28:12> ApplyReleasesImpl: Examining Pin: Microsoft Excel 2010.lnk 2017-03-21 08:28:12> ApplyReleasesImpl: Examining Pin: Microsoft PowerPoint 2010.lnk 2017-03-21 08:28:12> ApplyReleasesImpl: Examining Pin: Notepad++.lnk 2017-03-21 08:28:12> ApplyReleasesImpl: Examining Pin: PLSQL Developer.lnk 2017-03-21 08:28:12> ApplyReleasesImpl: Examining Pin: Snipping Tool.lnk 2017-03-21 08:28:12> ApplyReleasesImpl: File 'C:\Users\chocopks\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar\Snipping Tool.lnk' could not be converted into a valid ShellLink: System.IO.FileNotFoundException: 지정된 파일을 찾을 수 없습니다. (예외가 발생한 HRESULT: 0x80070002) 위치: Squirrel.Shell.ShellLink.IShellLinkW.Resolve(IntPtr hWnd, UInt32 fFlags) 위치: Squirrel.Shell.ShellLink.Open(String linkFile, IntPtr hWnd, EShellLinkResolveFlags resolveFlags, UInt16 timeOut) 위치: Squirrel.UpdateManager.ApplyReleasesImpl.<fixPinnedExecutables>b__11_0(FileInfo file) 2017-03-21 08:28:12> ApplyReleasesImpl: Examining Pin: sqldeveloper.lnk 2017-03-21 08:28:12> ApplyReleasesImpl: Examining Pin: UltraEdit.lnk 2017-03-21 08:28:12> ApplyReleasesImpl: Examining Pin: Windows Explorer.lnk 2017-03-21 08:28:12> ApplyReleasesImpl: Examining Pin: 카카오톡.lnk 2017-03-21 08:28:12> ApplyReleasesImpl: Examining Pin: 한글과컴퓨터 한글 2007.lnk 2017-03-21 08:28:12> ApplyReleasesImpl: Fixing up tray icons 2017-03-21 08:28:12> ApplyReleasesImpl: Couldn't rewrite shim RegKey, most likely no apps are shimmed: System.NullReferenceException: 개체 참조가 개체의 인스턴스로 설정되지 않았습니다. 위치: Squirrel.UpdateManager.ApplyReleasesImpl.<unshimOurselves>b__13_0(RegistryView view) 2017-03-21 08:28:12> ApplyReleasesImpl: Couldn't rewrite shim RegKey, most likely no apps are shimmed: System.NullReferenceException: 개체 참조가 개체의 인스턴스로 설정되지 않았습니다. 위치: Squirrel.UpdateManager.ApplyReleasesImpl.<unshimOurselves>b__13_0(RegistryView view) 2017-03-21 08:28:12> ApplyReleasesImpl: cleanDeadVersions: for version 1.15.0 2017-03-21 08:28:12> ApplyReleasesImpl: cleanDeadVersions: exclude folder app-1.15.0

  • python
wf.designer07 댓글 1 좋아요 0 조회수 518

새 책 추가할 때 문제가 발생합니다.

미해결

워드프레스 제대로 개발하기 - 어드민 편

Warning: Invalid argument supplied for foreach() in /volume1/web/bookstore/wp-content/themes/dp-bookstore/functions-save.php on line 3 이런 메세지가 뜹니다. 수정할때는 문제가 없는데, 새 책 추가하려면 이런 메시지가 뜨네요. 작동은 하는 것 같은데요...

  • wordpress
  • php
Sung-Joon Park 댓글 2 좋아요 0 조회수 250

테스트 폴더에 .yml 적용이 안 됩니다. ㅠㅠ

미해결

실전! 스프링 부트와 JPA 활용1 - 웹 애플리케이션 개발

똑같이 테스트 폴더 안에(java폴더와 같은 위치에)resources폴더 만들고 .yml파일 생성해도 원래 있던 main폴더에 위치한 .yml파일 설정이 적용 되네요. 이클립스를 사용하고 있어서 안되는 건가요??

  • spring-boot
  • spring
  • JPA
  • 웹앱
  • java
이시열 댓글 6 좋아요 0 조회수 1607

reduce((a, f) => f(a), args)

미해결

함수형 프로그래밍과 JavaScript ES6+

go 함수를 만들면서 reduce를 사용하는 것은 이해했는데 reduce((a, f) => f(a), args)에서 (a, f) => f(a)로 어떻게 추상화했는지 이해가 되지 않습니다. 왜 매개변수로 a와 함수를 넘기는 걸까요? 이해가 될듯 하면서도 다시 봐도 모르겠네요.

  • 함수형-프로그래밍
  • javascript
정덕수 댓글 1 좋아요 0 조회수 285

인기 태그

인프런 TOP Writers

주간 인기글