본문 바로가기

Spring3

[SpringFrame] Spring설정xml파일의 classpath설정이해하기 https://developer-joe.tistory.com/225 Spring의 classpath:의 경로 위치 아래 Spring web.xml의 ContextLoaderListener의 환경설정 파일인 applicationContext.xml의 위치를 지정하는 코드에서 classpath:의 위치가 어디인가? contextConfigLocation classpath:applicationCon.. developer-joe.tistory.com 출처: https://developer-joe.tistory.com/225 [코드 조각-Android, Java, Spring, JavaScript, C#, C, C++, PHP, HTML, CSS, Delphi] 와일드카드가 하나일때인 /*/와 두개 일때인 /**.. 2021. 8. 6.
[Spring] Selectbox 자유롭게 쓰기 출처 https://stackoverflow.com/questions/7143738/is-it-possible-to-use-multiple-params-in-the-itemlabel-of-a-formselect-formopt Is it possible to use multiple params in the itemLabel of a form:select/form:option I'm using Spring. I've got a JSP with a form:select in it displaying the list of users. In this situation the username or id won't mean much to the user so I need to show firstname lastnam.. 2020. 7. 29.
[Java] ModelAndView_예제02 dispatcher-servlet.xml 1234567891011 text/xml;charset=utf-8 Colored by Color Scriptercs MyHomeController.Java123451234567891011121314151617@RequestMapping(value = "/myHomeIndex.do")public String myHomeIndex(@ModelAttribute("myHomeVO") myHomeVO myHomeVO,HttpServletRequest request) throws Exception { return "/myHome/myHomeIndex";} @RequestMapping(value = "/selectHomeList.do")public ModelAndView se.. 2018. 8. 27.