전체 글목록496 자바스크립트에서의 다국어 지원 jquery.i18n.properties [ 참고 url ] http://egloos.zum.com/aretias/v/970593 https://dzone.com/articles/internationalization-using http://corpus.hubwiz.com/2/angularjs/29182245.html // 서버, 프론트단 properties 파일을 분리한 형식 http://forum.spring.io/forum/spring-projects/security/125976-security-and-i18n-not-cooperating http://yarbong.tistory.com/115 Web/Javascript_Jquery 2018. 1. 15. 구글 클라우드 톰캣 서버 not working 이유는!!! 시벌.. . 구글 클라우드에 방화벽을 뚫어줘야함. centos에서 방화벽 설정 이외에 구글 에서 설정하는것이 있음!! 참고 : http://gusrb.tistory.com/50 그러나 , 위 방법으로는 해결이 완벽히 안됨. 구글에 톰캣용 VM이 따로있다. 그걸 설치하고, 방화벽 설정을 같게 맞추면 쉽게 작동한다. SERVER/구글 클라우드 플랫폼 GCP 2018. 1. 15. 다국어 처리 ${pageContext.response.locale} http://yarbong.tistory.com/115 Web/Javascript_Jquery 2017. 12. 27. [sitemesh] div로 자바스크립트 설정 Extracting a DIV's content using Sitemesh Decorators Extracting a DIV's content using Sitemesh Decorators https://stackoverflow.com/questions/3716490/extracting-a-divs-content-using-sitemesh-decorators Web/스프링 2017. 12. 7. [스프링 시큐리티, 다국어] 시큐리티 적용시 다국어 세션, locale 유지 https://hfontis.wordpress.com/2015/12/16/i18n-with-spring-security/ 시큐리티 사용시 locale인터셉터를 타지않고 바로 시큐리티로 넘어가서 locale 세션이 유지가 안된다. 해결방안은 위 주소에 자세히 나와있고, 필터를 사용한다. I18n with spring securityThe Problem: localization works on regular JSP pages, but not when using the spring security.Money quote from the documentation:Spring Security relies on Spring’s localization support in order to actually lookup t.. Web/스프링 2017. 11. 27. db 커넥션풀 AbstractRoutingDataSource 이거랑 같이 적용되는지 ? db 커넥션풀 AbstractRoutingDataSource 이거랑 같이 적용되는지 ? commons-dbcp AbstractRoutingDataSource 아직 잘모르겟다. 커넥션풀은 생성되면 서버다운될떄까지 않끊기는건가 ? Web/스프링 2017. 11. 22. 스프링 다중 DB 처리 , AbstractRoutingDataSource - 이건 다국어 및 언어별로 DB 연결 다르게 하는거. 내가 찾고 있던거 주의사항은 ~~ 코드한줄한줄 잘 봐야한다. 별거아닌코드인데 잘 돌아감 https://spring.io/blog/2007/01/23/dynamic-datasource-routing/https://howtodoinjava.com/spring/spring-orm/spring-3-2-5-abstractroutingdatasource-example/ 이건 코드를 사용해서 동적으로 바꿀수 있는 소스. 이거는 적용안해봤지만 아마도 될것이다. https://www.codeday.top/2017/07/03/25380.html Web/스프링 2017. 11. 22. 스프링 다국어 처리 및 여러 언어 http://pentode.tistory.com/77 이거만 참고해도 session 으로 처리 가능 org.springframework.web.servlet.i18n.SessionLocaleResolver 이부분 검색하면 3가지로 바꿀수 있는데, header 포함 언어, 세션, 쿠키 세가지 설정있음 이 부분만 찾아서 바꾸면 가능 http://egloos.zum.com/aretias/v/970593 Web/스프링 2017. 11. 22. [스프링 시큐리티] 로그인 작업 후 부가 작업, 성공, 실패 http://zgundam.tistory.com/53?category=430446 git 주소 : https://github.com/TerryChang/spring_security_blog_sample/blob/master/springsecurity/src/main/webapp/WEB-INF/spring/spring-security.xml Web/스프링 2017. 11. 20. [스프링 시큐리티] 로그인 세션 리로드, reset, 재로그인 https://stackoverflow.com/questions/14712685/spring-security-set-grantedauthorities Collection oldAuthorities = (Collection)SecurityContextHolder.getContext().getAuthentication().getAuthorities(); SimpleGrantedAuthority authority = new SimpleGrantedAuthority("ROLE_ANOTHER"); List updatedAuthorities = new ArrayList(); updatedAuthorities.add(authority); updatedAuthorities.addAll(oldAuthorities); S.. 카테고리 없음 2017. 11. 3. [스프링 시큐리티] 현재 권한 정보 가져오기 및 권한 정보 비교 http://jason-moon.tistory.com/132 보통의 Entity(JPA에서의..)는 등록사용자ID, 등록일자를 가지게 된다.package kr.co.xfilegolf.sale; import kr.co.xfilegolf.SecurityUtils; import lombok.Data; import javax.persistence.*; import java.time.LocalDate; import java.time.LocalDateTime; /** * @author jason, Moon * @since 2016-10-09 */ @Entity @Table(name = "SALE") @Data public class Sale { @Id @GeneratedValue @Column(name = "ID".. Web/스프링 2017. 11. 3. MyBatis isNull isEmpty 사용하기 http://cofs.tistory.com/309 MyBatis isNull, isEmpty 사용하여 문자열 비교하기 Ibatis 에는 isNull, isEmpty가 있었지만 MyBatis에는 없다. 기타 다른 태그들 역시 사라지고 없지만 이번 포스팅에서는 문자가 null인지 또는 공백인지에 대해 체크하는 방법에 대해서 살펴 보려고 한다. 가장 흔하게 비교하는 것이 값이 null인지 공백인지 체크하는게 아닌가 싶다. 보통은 다음과 같이 null인지 공백인지 체크를 동시에 한다. 1cs 하지만 MyBatis에서는 OGNL(Object Graph Navigation Language) 의 이슈가 있다.(참고 http://cofs.tistory.com/96) 그래서 위의 방법은 좋은 방법이 아니라고 생각한다. .. Web/스프링 2017. 11. 1. 이전 1 ··· 23 24 25 26 27 28 29 ··· 42 다음