본문 바로가기

개발 공부하면서 오류 해결9

flutter 오류 [myapp] flutter create --template app --overwrite .Error: Unable to find git in your PATH. exit code 1 플러터 공부를 하기 위해 dart 문법 공부 완료 후 플러터로 진입하기 위해 프로젝트 만들기를 하면서 [myapp] flutter create --template app --overwrite . Error: Unable to find git in your PATH. exit code 1 오류가 발생 했습니다 https://stackoverflow.com/questions/71252002/error-unable-to-find-git-in-your-path-despite-adding-path-and-trying-all-availa/76100680#76100680 해결에 도움이 되었던 글입니다 기존 강의 들은 시스템 환경변수에 C:\flutter\bin 만 들어갔었습니다 여기서 플러터 폴더 안에 들어가 있는 .. 2023. 6. 28.
게시글 작성시 member_id null 게시판 과 회원 DB를 맵핑 을 해서 로그인을 하고 게시글을 작성했을때 해당 게시글의 member_id 를 뜨게 하고싶었다 @Id // pk 컬럼 지정. 필수 @GeneratedValue(strategy = GenerationType.IDENTITY) // auto_increment private Long id; @Column(length = 20, nullable = false) // 크기 20, not null private String boardWriter; @Column // 크기 255, null 가능 private String boardPass; @Column private String boardTitle; @Column(length = 500) private String boardConten.. 2023. 4. 10.
게시글 작성 403 오류(스프링 시큐리티) get방식은 오류가 안 걸리지만 post방식들은 오류가 나는 현상이 나타났습니다. 컴파일러도 조용 하고 디버깅 모드도 조용합니다. 하지만 게시글 작성을하면 403 권한 오류가 발생하는 문제가 생겼습니다. GPT는 두루뭉실하게 의견을 제시해 주고 결국 제가 찾아 야합니다 현제까지 발견한 건 csrf 문제인 거 같습니다 스프링 시큐리티 설정에서 http.csrf(). disable();CSRF 공격방지 기능을 비활성화 문제 때문에 로그인 화면을 쓸 수가 없는 현상이 나타나서 지금 오류 해결 문제 때문에 골 썩히고 있습니다. @Configuration @EnableWebSecurity public class SecurityConfig extends WebSecurityConfigurerAdapter { @Au.. 2023. 4. 6.
[THYMELEAF][http-nio-8080-exec-1] Exception processing template "detail": An error happened during template parsing (template: "class path resource ") 오류 해결 게시판 작업 도중 thymelef 오류를 받았습니다. 2023-03-29 08:51:16.958 ERROR 19936 --- [nio-8080-exec-1] org.thymeleaf.TemplateEngine : [THYMELEAF][http-nio-8080-exec-1] Exception processing template "detail": An error happened during template parsing (template: "class path resource [templates/detail.html]") 해당 오류는 tymelef 에서 서버단으로 db를 끌어올때 데이터 베이스상 뭔가 비어있으면 오류가 걸립니다. 예를들어 Entity 작성중 필드가 프론트단이랑 일치하지않는다거나 레포지 토리에.. 2023. 3. 29.