링크 : http://www.bootply.com/61521

'Web > CSS' 카테고리의 다른 글

CSS3 3D 변환 사례 예제(링크)  (0) 2014.05.29
CSS3 Button(링크)  (0) 2014.05.29
SVG(X11) 색상 링크(developer.mozilla.org)  (0) 2014.05.21
CSS] 핵종류 (링크)  (0) 2013.10.30
Posted by 야동우
,



링크 : http://demos.flesler.com/jquery/scrollTo/

'Web > jQuery' 카테고리의 다른 글

jQueryUI] sortable을 이용한 드래그앤드랍(링크)  (0) 2014.10.15
Posted by 야동우
,


출처 : http://blog.upgle.com/26140




jQueryIO의 sortable() 을 이용한 드래그앤드랍(Drag & Drop) 좋은 예제


http://devheart.org/examples/jquery-customizable-layout-using-drag-and-drop/1-getting-started-with-sortable-lists/index.html





'Web > jQuery' 카테고리의 다른 글

jQuery] scrollTo 예제(링크)  (0) 2014.10.20
Posted by 야동우
,


회전하는 입방체

http://www.webkit.org/blog-files/3d-transforms/morphing-cubes.html



회전목마같은 갤러리

https://developer.apple.com/safaridemos/showcase/gallery/



파노라마같은 갤러리

http://www.satine.org/research/webkit/snowleopard/snowstack.html



3차원적 공간으로 표현된 페이지 이동

http://2011.beercamp.com/




'Web > CSS' 카테고리의 다른 글

Bootstrap] glyphicon 클래스 및 이미지 종류  (0) 2014.11.21
CSS3 Button(링크)  (0) 2014.05.29
SVG(X11) 색상 링크(developer.mozilla.org)  (0) 2014.05.21
CSS] 핵종류 (링크)  (0) 2013.10.30
Posted by 야동우
,

CSS3 Button(링크)

Web/CSS 2014. 5. 29. 08:12


CSS button generator

http://css3button.net/



http://hellohappy.org/css3-buttons/



http://webdesignerwall.com/tutorials/css3-gradient-buttons

'Web > CSS' 카테고리의 다른 글

Bootstrap] glyphicon 클래스 및 이미지 종류  (0) 2014.11.21
CSS3 3D 변환 사례 예제(링크)  (0) 2014.05.29
SVG(X11) 색상 링크(developer.mozilla.org)  (0) 2014.05.21
CSS] 핵종류 (링크)  (0) 2013.10.30
Posted by 야동우
,


https://developer.mozilla.org/en-US/docs/Web/CSS/color_value



http://moonsaeha.blog.me/90155978299

'Web > CSS' 카테고리의 다른 글

Bootstrap] glyphicon 클래스 및 이미지 종류  (0) 2014.11.21
CSS3 3D 변환 사례 예제(링크)  (0) 2014.05.29
CSS3 Button(링크)  (0) 2014.05.29
CSS] 핵종류 (링크)  (0) 2013.10.30
Posted by 야동우
,


하려면,


<label> 태그를 이용하면 된다.


<label>

<input type="checkbox" name="fruit" value="">

사과

</label>

<label>

<input type="checkbox" name="fruit" value="">

바나나

</label>


사과나 바나나를 클릭하면 체크박스 이벤트가 같이 먹힌다.


라디오 박스도 마찬가지다.





예전에 이렇게 처리하지 않고.. javascript 이용하여 텍스트 클릭시 바로 앞쪽의 checkbox를 click하도록 이벤트 걸어놓은 소스를 본적이 있음.

Posted by 야동우
,

1. xlancer 카


네이버 검색에서 


smtp helo  검색하면, 


SMTP 프로토콜의 이해라는 카페글이 나온다, 첫번째 아티클 클릭.


http://cafe.naver.com/xlancer/187








2. 준호씨의 블로그


출처 ] http://junho85.pe.kr/111


'Web > Web 일반' 카테고리의 다른 글

prettify - 소스코드 이쁘게 출력(링크)  (0) 2013.09.17
디자인 or 템플릿 관련 페이지 링크  (0) 2013.09.13
Posted by 야동우
,


이클립스 오류메세지


org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'commonUrlMapping' defined in ServletContext resource [/WEB-INF/config/app/appContext-servlet.xml]: Initialization of bean failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'loginController': Autowiring of methods failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire method: public void member.web.LoginController.setMemberSecurityService(member.service.MemberSecurityService); nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'memberSecurityService' defined in ServletContext resource [/WEB-INF/config/app/appContext-dao.xml]: Error setting property values; nested exception is org.springframework.beans.NotWritablePropertyException: Invalid property 'memberSecurityDAO' of bean class [member.service.MemberSecurityServiceImpl]: Bean property 'memberSecurityDAO' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter?

(보안상 일부 삭제했어요 ~_~)



스프링을 이제 처음 접하는 나에게 왜 이런 시련을.. -_-..


Controller는 있는걸로 쓰고, service, model, dao, ibatis xml 파일까지 만들고, 톰캣 서버를 올렸더니 듣도보다 못한 위 에러 메세지가 떴습니다.


한 30분 삽질해서 서버를 띄웠네요ㅋㅋ



(제가 진행하고 있는 프로젝트 기준으로 쓰는 거라서, 가려서 참고하세요 ^^ㅋ)

스프링은 2.5 버전을 사용하고 있습니다.


1. appContext-dao.xml 파일에 Service와 DAO 추가한 것에 대한 BEAN을 설정해줍니다.

<bean id="Service" class="path" p: blahblah~ >


2. DAO를 호출하는 ServiceImpl 구현클래스에 DAO getter, setter를 만들어줍니다.


3. ibatis 설정파일(sqlMapConfig.xml)에 ibatis xml 파일 추가한 것에 대한 정보를 써줍니다. 

<sqlMap resource="XML PATH"/>




이렇게 해줬는데도 계속 에러가 나서 찾아보니


복사 붙여넣기 한 ServiceImpl 구현클래스에 사소한 오타가 ㅡ_ㅡ^.....


오타난 메소드 고치고 서버 올리니 제대로 올라옵디다ㅠ


















Posted by 야동우
,


// http:// 로 들어왔을 경우 https://로 redirect

String url = request.getRequestURL().toString();


// http:// 로 시작하고, url에 localhost와 test가 들어 있지 않을 경우에만 redirect

if( url.startsWith("http://") && ( url.indexOf("localhost") < 0 && url.indexOf("test") < 0) ) {

url = url.replaceAll("http://", "https://");

response.sendRedirect(url);

}





톰캣 올려서 localhost로 접근하거나, 테스트 서버에 배포하여 url에 test 구문이 들어가지 않은 

실제 서버에 접근했을 때, 


http:// 로 시작한 url일 경우 https:// 로 변경하여 redirect






출처: http://blog.naver.com/PostView.nhn?blogId=dryice80&logNo=80094262790

'Web > JSP' 카테고리의 다른 글

package javax.servlet does not exist 오류 해결방법  (2) 2013.09.17
Posted by 야동우
,