웹프로그래밍
-
스트럿츠2 - 인터셉터웹프로그래밍/struts 2018. 5. 29. 22:02
An ActionInvocation represents the execution state of an Action. It holds the Interceptors and the Action instance. By repeated re-entrant execution of the invoke() method, initially by the ActionProxy, then by the Interceptors, the Interceptors are all executed, and then the Action and the Result. The ActionContext is the context in which an Action is executed. Each context is basically a conta..
-
자바에러 - import 잘 안될때웹프로그래밍/기타 2018. 5. 29. 14:11
I have also gone through the same error but it was resolved just by changing some properties of the project:Right-click on your projectClick on PropertiesSelect Java Build Path from right-hand side panelSelect Order and Export tabClick on your JRE System Library or JDK LibraryClick on Up button and move it to first positionClick OkClean & build your project.Do repeat this for all other dependent..
-
스트럿츠2 에러 - org.xml.sax.SAXParseException: The content of element type웹프로그래밍/오류 노트 2018. 5. 29. 11:07
http://snowflower.tistory.com/212 http://likeashaha.tistory.com/entry/1-ibatis%EB%A5%BC-%EC%9D%B4%EC%9A%A9%ED%95%98%EC%97%AC-DB%EC%97%B0%EA%B2%B0%EC%9D%84-%ED%95%B4%EB%B4%85%EC%8B%9C%EB%8B%A4 오류내용: Cause: org.xml.sax.SAXParseException: The content of element type "sqlMapConfig" is incomplete, it must match "(properties?,settings?,resultObjectFactory?,typeAlias*,typeHandler*,transactionManager?,s..
-
회원정보 메일 전송하기웹프로그래밍/기타 2018. 5. 27. 16:23
http://javacan.tistory.com/entry/25 http://www.mkyong.com/java/javamail-api-sending-email-via-gmail-smtp-example/ http://gongcha.tistory.com/27 http://darkhorizon.tistory.com/324 http://devgwangpal.tistory.com/34 - gmail 이용 전송 세팅 # gmail -> 환경 설정 -> 전달 및 pop/IMAP -> IMAP액세스 ->IMAP 사용 설정 : "참조":https://support.google.com/mail/troubleshooter/1668960?hl=ko&rd=2#ts=1665018 # 내 계정 -> 로그인및 보안 -> 연결된 앱..
-
스트럿츠2 - 원인을 알 수 없는 에러, 부적합한 열 이름웹프로그래밍/오류 노트 2018. 5. 27. 15:58
http://ohgyun.com/280 쿼리문, 자바클래스, result 맵핑 등기본적인 체크사항들은 모두 확인 했지만 같은 에러가 발생하여 검색해보니 select 쿼리문으로 DB에서 불러오는 속성의 갯수가 전부 똑같아야 한다.ibatis는 쿼리에 대한 메타데이터(필드, 타입 등)을 캐시하는데 이전에 쿼리문에서 select * from을 사용하고select '특정속성' from으로 특정 속성을 불러오려고 하면'부적합한 열 이름' 에러가 발생함 -해결책:구글링 검색해보면 아래 코드가 해결책으로 나오지만내 경우엔 적용이 안됨 $sql$ select 문에서 특정 속성을 불러오는 대신 * 전부 불러오게 수정해서 해결함.
-