일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- java
- CentOS
- DB
- 리눅스
- input
- larravel
- javascript
- 정규식
- 톰캣
- properties
- tomcat
- 이클립스
- 안드로이드
- JSON
- NetBeans
- laravel
- File
- Linux
- ajax
- curl
- junit
- MySQL
- SeLinux
- Spring
- php
- 와일드카드
- html
- Android
- jquery
- error
- Today
- Total
목록전체 글 (162)
합쭈기 programming
http://linuxism.tistory.com/804 참조
final String[] PASS_URL = {{로그인url}}; @Override protected void doFilterInternal(HttpServletRequest paramHttpServletRequest, HttpServletResponse paramHttpServletResponse, FilterChain paramFilterChain) throws ServletException, IOException { String url = paramHttpServletRequest.getRequestURI(); String[] splitUrl = url.split("\\."); if (!isPass(url) && splitUrl.length < 2) { if (paramHttpServletRequ..
MySQL 퍼포먼스 최적화저자성동찬 지음출판사한빛미디어 | 2014-03-14 출간카테고리컴퓨터/IT책소개MySQL 퍼포먼스에 산소탱크를 달아보자! MySQL을 여러 분... 읽어봐야 할 책 ..
SELECT table_schema "Database Name", SUM(data_length + index_length) / 1024 / 1024 "Size(MB)" FROM information_schema.TABLES GROUP BY table_schema;
[localhost-startStop-1] INFO o.s.web.context.ContextLoader - Root WebApplicationContext: initialization started log4j 설정이 아니라 요런식으로 log가 뜬다면 log4j 라이브러리를 불러오지 못한 것이다. SLF4J: Class path contains multiple SLF4J bindings.SLF4J: Found binding in [jar:file:/home/crazia/work/hbase-0.92.0/lib/slf4j-log4j12-1.5.8.jar!/org/slf4j/impl/StaticLoggerBinder.class]SLF4J: Found binding in [jar:file:/home/crazia..
web.xml org.springframework.web.util.Log4jConfigListener log4jConfigLocation classpath:log4j.xml default는 classpath이다. classpath안에 있으면 명시하지 않아도 된다.
spring xml 참조를 위해 spring-test를 추가한다. pom.xmlorg.springframeworkspring-test${org.springframework-version} junitjunit4.7test view 테스트는 제외 했으니까 test/resource에 간략화된 설정 xml을 추가한다. servlet.-test.xml mybatis-test.xml url 에러 시 '&' 다음에 amp; 추가 ※ properties 참조 안되니까 박아넣음.. test에 @Runwith 셋팅 DatabasesTest.java@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration(locations={"classpath:/spring/servlet-..
http://www.cmsfactory.net/node/11421 참조