일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JPA
- bootstrap jquery datepicker
- gwt
- jquery serialize
- java tip
- COC
- Hudson
- SVN
- querydsl
- zabbix
- spring security
- GEventEvaluator
- ibatis
- MySQL
- drools
- jstl
- spring transaction
- @SqlResultSetMapping
- guvnor
- CEP
- JBoss Seam
- maven
- spring jpa
- jenkins
- Drools Fusion
- gwt-ext
- jquery
- rember me
- custom filter
- Spring
- Today
- Total
봉 블로그
Restful 한 API 서버에 Spring Security 3.2.5 Java Config Example. @Configuration @Order(SecurityProperties.ACCESS_OVERRIDE_ORDER) protected static class ApplicationSecurity extends WebSecurityConfigurerAdapter { @Autowired private SecurityProperties security; @Override public void configure(WebSecurity web) throws Exception { web .ignoring().antMatchers( "/", "/index.html", "/app.js", "/resources/**"..
아래는 sencha architect 에서의 사용 팁이다. 검색어필드 enter event 주기필드 enableKeyEvents= true 로 설정후 Controller keydown event 함수 만들기. StoreautoLoad 하면 초기 접속시 자동 load 됨.==> mannual 하게 load 해야함. (아래 참고)onStep2Activate: function(component, eOpts) { component.down('gridpanel').getStore().load();},load 시 param 추가 방법.Ext.getCmp('id').getStore().load({params: {domainId: Domain.id}}); var store = Ext.getCmp("id").getSto..
Spring MVC Maven 프로젝트를 구축하기 힘들다고 생각하세요?여기 매우 쉽고 빠르게 구축하는 방법을 알려드리겠습니다. 1분이면 됩니다. 작업순서는 아래와 같습니다.Eclipse 에서 Maven 프로젝트를 생성합니다.pom.xml 파일에 spring-boot parent 하나와 depency 하나만 추가합니다.Boot Class 생성 프로젝트 셋팅은 이것으로 끝입니다. 정말이에요.ㅋ위와 같이하면 spring boot 가 알아서 필요한 depency 라이브러리들을 셋팅해줍니다. 딱 필요한것만. ㅎ 좀더 자세히 설명드리겠습니다.Maven Project 생성하기 Group Id, Artifact Id, Packaging 입력하고 'Finish' 하면 프로젝트가 생성됩니다. pom.xml spring b..