블로그 이미지
암초보

calendar

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

Notice

Tag

04-26 05:20
2018. 9. 12. 12:29 DB/MySQL

$ mysql -N -e 'show databases' | while read dbname; do mysqldump --routines --triggers --single-transaction "$dbname" > "$dbname".sql; done

posted by 암초보
2018. 2. 1. 10:17 O/S/각종 O/S 관련


find . -type l -printf "%p --> %l\n"

'O/S > 각종 O/S 관련' 카테고리의 다른 글

linux 심볼릭 링크 생성/삭제 방법  (0) 2013.12.04
Linux font 확인  (0) 2013.07.11
리눅스 포트오픈 - iptables  (0) 2011.05.17
솔라리스 cpu, memory 확인  (0) 2011.01.25
AIX cpu 정보 보기  (0) 2010.12.27
posted by 암초보
2017. 12. 19. 11:17 프로그래밍/Spring Security

@Secured는 표현식 사용할 수 없고

@PreAuthroize는 표현식 사용 가능



예)

@Secured({"ROLE_USER","ROLE_ADMIN"}) => OR 조건, AND 조건 불가능


@PreAuthorize("hasRole('ROLE_USER') and hasRole('ROLE_ADMIN')") => and 조건, or 조건 모두 가능


posted by 암초보
2017. 2. 27. 08:24 프로그래밍/기타

jad -o -r -s java ./class/com/**/*.class

posted by 암초보
2017. 2. 24. 21:26 프로그래밍/기타

업데이트룰 해주자..


To install STS update from snapshot site, got to Help > Install New Software and add the update site https://dist.springframework.org/snapshot/IDE/nightly as mentioned in the issue ticket.

posted by 암초보
2016. 11. 9. 14:36 프로그래밍/기타

안랩의 safe transaction을 지워라......




아...빡친다....



posted by 암초보
2016. 10. 7. 07:58 DB/MySQL

SELECT

table_name

FROM 

information_schema.KEY_COLUMN_USAGE 

WHERE 

table_schema ='my_database' 

AND referenced_table_name = 'my_table' 

'DB > MySQL' 카테고리의 다른 글

mysqldump db별 sql 덤프  (1) 2018.09.12
selecting top N records per group  (0) 2014.08.12
INSERT IGNORE  (0) 2013.11.29
procedure function 덤프  (0) 2013.10.31
The Rows Holding the Group-wise Maximum of a Certain Column  (0) 2013.10.23
posted by 암초보
2016. 4. 4. 11:59 프로그래밍/Spring

'프로그래밍 > Spring' 카테고리의 다른 글

Spring Boot로 블로그 만드는 강좌(밀키 스프링 블로그)  (0) 2016.03.30
@RequestMapping value를 코드 상에서 가져오는 방법  (0) 2015.09.23
바인딩  (0) 2014.06.27
타입 변환  (0) 2014.04.29
스프링이란?  (0) 2011.10.31
posted by 암초보
2016. 3. 30. 16:29 프로그래밍/Spring

http://millky.com/@origoni/post/1100


Spring Boot 검색 중 발견...

시간 날때 보도록...

'프로그래밍 > Spring' 카테고리의 다른 글

Spring Framework 레퍼런스 번역  (0) 2016.04.04
@RequestMapping value를 코드 상에서 가져오는 방법  (0) 2015.09.23
바인딩  (0) 2014.06.27
타입 변환  (0) 2014.04.29
스프링이란?  (0) 2011.10.31
posted by 암초보
2015. 12. 8. 17:32 프로그래밍/JavaScript
마지막으로 정의된 같은 이름의 function이 overwrite 된다.

http://www.codeproject.com/Articles/797997/JavaScript-does-NOT-support-Method-Overloading-Tha


'프로그래밍 > JavaScript' 카테고리의 다른 글

addEventListener IE8에서는,..  (0) 2015.01.14
splice  (0) 2013.05.31
Math.floor, Math.round, Math.ceil  (0) 2012.02.02
Firefox css style float  (0) 2011.06.17
substring  (0) 2011.04.18
posted by 암초보