测试类:
Service类:
public class HelloService {
public String gethello(){
return "hello xml";
}
}
Controller类:
@RestController
public class HelloController {
@Autowired
HelloService helloService;
@GetMapping("/hello")
public void getHello(){
System.out.println(helloService.gethello());
}
}
Xml配置:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean class="com.dong.xml.HelloService" id="HelloController"/>
</beans>
至关重要的是启动类,只需要在启动类上加上@ImportResource注解,并标明位置,就成功配置了
@SpringBootApplication
@ImportResource("classpath:beans.xml")
public class XmlApplication {
public static void main(String[] args) {
SpringApplication.run(XmlApplication.class, args);
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之家整理,本文链接:https://www.bmabk.com/index.php/post/15758.html