전체 글(702)
-
Spring boot Caused by: java.lang.Error: Unresolved compilation problem: Value cannot be resolved to a type
@Value 어노테이션을 인식하지 못하는 경우 발생함STS에서 자동으로 import를 찾지 못해서, 수동으로 import를 넣고 실행하면 에러 발생함pom.xml에 아래 내용 추가해서 해결함 org.springframework.boot spring-boot-configuration-processor true
2024.12.29 -
SVN 백업 및 복구
전체 데이터를 백업받고, 개별 프로젝트별로 디렉토리 복사해서 local에서 SVN 복구 가능함
2024.12.29 -
Sencha grid 특정 컬럼만 commit해야 하는 경우
selection.commit(false, ['age']);처럼 원하는 컬러만 commit 처리함Ext.create('Ext.grid.Panel', { title: 'Editable Grid Example', renderTo: Ext.getBody(), width: 600, height: 400, store: { fields: ['id', 'name', 'age'], data: [ { id: 1, name: 'John Doe', age: 30 }, { id: 2, name: 'Jane Doe', age: 25 } ] }, columns: [ { text: 'ID', dataInd..
2024.12.28 -
Mybatis 로그 설정
logback/resourcs/logback-spring.xml %d{yyyy-MM-dd HH:mm:ss} %-5level %logger{36} - %msg%n Spring bootapplication.propertieslogging.level.org.mybatis=DEBUGlogging.level.org.apache.ibatis=DEBUGlogging.level.java.sql.PreparedStatement=DEBUGlogging.level.java.sql.Statement=DEBUGlogging.level.java.sql.ResultSet=DEBUGapp..
2024.12.28 -
PostgreSQL update문 처리
','에 상관없이 작동함 UPDATE users name = #{name}, email = #{email}, age = #{age}, WHERE id = #{id}위에 것이 안되는 경우 UPDATE users name = #{name}, email = #{email}, age = #{age}, WHERE id = #{id}
2024.12.28 -
PostgreSQL 컬럼명에 'table'을 사용하면 에러 발생함
쿼리insert into test(table)values('00');에러ERROR: syntax error at or near ")"LINE 1: insert into test(table) ^정상insert into test("table")values('00');
2024.12.28