๋ฐ์ํ
๋ฒ์ & ์๋ฌ(or Exception) |
ํด/๋ฒ์ : Spring Tool Suite3
ํ์ : spring-mybatis-oracleSQL์ ์ฐ๋์ํค๋ ์ค, @Controller๋ @Repository๋ ์๋ฌ๊ฐ ๋จ์ง ์๋๋ฐ @Autowired ์ด๋ ธํ ์ด์ ๋ง ์ฐ๋ฉด ์ด๊น์์ด ํด๋น Exception์ด ์ถ๋ชฐ(?) ํ๋ค.
ํด๊ฒฐ ๋ฐฉ๋ฒ |
๋ค์ํ ํด๊ฒฐ๋ฐฉ๋ฒ์ด ์๊ฒ ์ผ๋ ๋ด ๊ฒฝ์ฐ์,
์๋์ servlet.xml์์ ์ ์ธํ config.xml ํ์ผ์ ์ง์ฐ๊ณ ์๋ก ๋ง๋ ๋ค ํ๋ก์ ํธ ์ฐํด๋ฆญ->Refresh๋ฅผ ํด์คฌ๋๋ ๊ทธ๋ฅ ํด๊ฒฐ์ด ๋์๋ค..-_-; ๋์ฒด ์...?
<!-- mybatis config, mapper setting -->
<bean id="factoryBean" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="configLocation" value="classpath:or/kosta/config/config.xml" />
<property name="mapperLocations" value="classpath*:or/kosta/mapper/*.xml" />
</bean>
๋ฐ์ํ