Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- MySQL
- css
- android fragment
- jQuery
- java error
- 안드로이드
- fragment
- Android Apk 이름 변경
- release unsigned
- DataTable
- JavaScript
- FLUTTER
- android error
- html
- Kotlin
- CSS사용법
- Firebase
- Eclipse
- spring
- tomcat
- Android Apk
- Android Apk 이름
- Java
- R프로그래밍
- Exception
- error
- apache gzip
- release Apk
- Program type already present
- Android
Archives
- Today
- Total
목록error (2)
selfstarter
Android Error NotFoundException String resource ID
Android Error NotFoundException String resource ID Error NotFoundException: String resource ID #0xdac Cause setText할 때 넣는 인자가 String이 아니다 Solution modify Code holder.textView2.setText(itemListData.getMoney()); to holder.textView2.setText(Integer.toString(itemListData.getMoney()));
App/Android
2020. 5. 6. 14:56
Invalid bound statement error 해결
error message org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): mapper pakage Issue BaseMapper에 bean 등록을 하고 mapper를 통해서 쿼리문을 날려 원하는 값을 가져오는 예제를 실행시킴. 그런데 자꾸 Invalid bound statement 에러가 뜸 code @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(classes = { com.base.server.comm.config.RootConfig.class }) public class selectTest { @Setter(onMethod\_ = @Autow..
Server/Spring
2019. 7. 10. 15:53