일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
- Git
- mybatis
- 스프링
- Elk
- 마이바티스
- SonarQube
- sql
- JVM
- DB
- 자바
- slave node
- 아파치
- Java
- heap메모리
- orm
- 엘라스틱서치
- 레드마인
- nodejs
- npm
- springboot
- Bitbucket
- ElasticSearch
- Gradle
- 시스템운영
- 리눅스
- Apach
- mysql
- spring
- 트랜잭션
- Stash
- Today
- Total
목록jsp (2)
프로그래머호이잇
SELECT * FROM BLOG state = #{state} AND title like #{title} AND author_name like #{author.name} 을 쓰지 않고 where로 쓴다면 SELECT * FROM BLOG where state = #{state} AND title like #{title} AND author_name like #{author.name} 위와 같이 될 겁니다. 이렇게 되면 어떤 문제가 발생하냐.. if 절이 모두 실행 되지 않는다면 sql 문장이SELECT * FROM BLOG where 위와 같이 되서 에러가 발생합니다..ㅠㅠ 그리고 첫번쨰 if 절이 실행이 되지 않는다면..SELECT * FROM BLOG where AND title like #{tit..
메이븐 빌드를 하면 아래와 같은 에러에 봉착합니다...ㅠㅠ [ERROR] No goals have been specified for this build. You must specify a valid lifecycle phase or a goal in the format : or :[:]:. Available lifecycle phases are: validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-tes..