[스프링] 프로젝트 생성 기본경로(url) 변경
·
Spring
스프링 레거시에서 프로젝트를 생성하고 톰캣을 연결한뒤 서버를 실행하면 아래와 같이 기본경로가 잡혀있는것을 볼 수 있다. 이것을 제거하기 위해서는 이클립스 중간 하단에 Servers → Tomcat 더블클릭 → Modules 탭 → Edit → Path의 값을 ‘/’로 수정 그 후에 저장을 한뒤 서버를 재시작하면 아래와 같이 기본 실행경로가 변경된 것을 확인할 수 있다.
[스프링] 스프링 JdbcTemplate 사용하기
·
Spring
JdbcTemplate은 반복적인 작업을 간단히 처리하기 위해 사용합니다. 기존에 방식에서 JdbcTemplate이면 2줄로 처리가 가능하기에 간편하다. JdbcTemplate 순서 1. pom.xml → jdbcTemplate설정 2. servelt-context.xml → Bean(빈)설정 3. controller → jdbcTemplate @Autowired 설정 4. Constatnt 클래스 추가 → 외부에서 공통된 jdbcTemplates를 제공 5. DAO에서 커넥스풀방식 → jdbcTemplate으로 변경 1. pom.xml 기존 pom.xml에 아래와 같이 추가! org.springframework spring-jdbc 4.1.4.RELEASE 2. servelt-context.xml(내 ..
[스프링] 스프링 MVC 게시판
·
Spring
컨트롤러 BController.java package com.all.test01.controller; import javax.servlet.http.HttpServletRequest; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import com.all.test01.command.BCommand; import com.all.test01.command.BContentComma..
[스프링] Validator를 이용한 서버 유효성 검사
·
Spring
일반적으로 유효성 검사는 프론트단에서 작업을 하는데 사실 서버랑 프론트에서 둘다 작업을 하는게 가장 좋다 그래서 서버단에서 작업을 하기위해서는 밸리데이터 클래스를 추가한다. Student package com.all.test01; public class Student { private String name; private int id; public String getName() { return name; } public void setName(String name) { this.name = name; } public int getId() { return id; } public void setId(int id) { this.id = id; } } StudentValidator package com.all...
[스프링 에러] An internal error occurred during: "Requesting Java AST from selection".com.ibm.icu.text.UTF16.isSurrogate(C)Z
·
Spring
이클립스에서 스프링 MVC 프로젝트 생성후 Java 파일 클릭시 아래와 같이 An internal error occurred during: "Requesting Java AST from selection".com.ibm.icu.text.UTF16.isSurrogate(C)Z 에러가 나타날 수 있다. 해결방법 위에 에러창을 최소화 모드로 클릭한 후 이클립스 메뉴에서 Window → preferences → Java → Editor → Mark Occurrences 맨 위에 체크박스를 아래와 같이 해제한다. Apply and Close 클릭하면 에러창이 나타나지 않고 정상적으로 Java파일을 사용할 수 있다.
[스프링 에러] @PostConstruct @PreDestroy 에러 빨간 밑줄
·
Spring
스프링에서 @PostConstruct @PreDestroy 어노테이션 사용시 위와 같이 빨간 에러창이 나타난다. 이유는 자바 9버전부터 deprecated 되었기 때문에 maven에서 pom.xml 들어가서 아래와 같이 추가한다. javax.annotation javax.annotation-api 1.3.2 그러면 아래와 같이 에러가 안뜬 정상코드를 볼 수 있다.
[스프링 오류] CGLIB is required to process @Configuration classes.
·
Spring
스프링 레거시로 @configuration 어노테이션 사용시 아래와 같은 오류가 나타날 수 있다. Exception in thread "main" java.lang.IllegalStateException: CGLIB is required to process @Configuration classes. Either add CGLIB to the classpath or remove the following @Configuration bean definitions: [applicationConfig] 해결방법 pom.xml에서 아래와 같이 추가하고 이클립스에서 maven -> Update Project를 클릭해준다. cglib cglib 3.1