1. useGeneratedKeys="true" 2. keyProperty="변수명" 3. keyColumn="Sql컬럼명" Ex1) 마이바티스 INSERT INTO table ( AAA ) VALUES ( #{AAA} ) Ex2) 자바 Map map = new HashMap(); map.put("AAA", "데이타"); dao.insertData(map); String key = map.get("keyNum").toString();
The background cache eviction process was unable to free [10] percent of the cache for Context [] - consider increasing the maximum size of the cache. After eviction approximately [9,630] KB of data remained in the cache.context.xml에 추가
1. 필요 라이브러리 추가 2. 빈 추가 true 3. 메일 클래스 선언 package com.ilshin.domain; import java.io.Serializable; import java.util.Date; public class SendMail implements Serializable { private String sender; private String receiver; private String subject; private String content; public String getSender() { return sender; } public void setSender(String sender) { this.sender = sender; } public String getReceiver(..