전체 글(746)
-
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 -
Spring boot java.lang.IllegalStateException: No primary or single unique constructor found for interface javax.servlet.http.HttpServletRequest
Spring boot 3.x 부터는 javax.servlet.http.HttpServletRequest를 지원하지 않음jakarta.servlet.http.HttpServletRequest를 사용해야 함
2024.12.28 -
Sencha grid 데이터 초기화 하기
const grid = Ext.ComponentQuery.query('grid')[0]; // Get the grid componentgrid.getStore().removeAll(); // Clear all data
2024.12.27 -
Sencha grid에 선택된 rows를 서버에 전송하기
에러 발생{ text: '삭제', handler: function() { const grid = this.up('grid'); const selection = grid.getSelectionModel().getSelection(); Ext.Ajax.request({ url: '/location/delete_image', params: { _csrf: document.getElementById('_csrf').innerText, }, method: 'POST', jsonData: { data: selectio..
2024.12.27 -
Spring boot 외부 디렉토리를 static으로 인식하기
외부 디렉토리를 static으로 설정spring.web.resources.static-locations=file:/uploads/여러 디렉토리를 static으로 설정spring.web.resources.static-locations="file:/uploads/classpath:/static/"
2024.12.27