溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Spring根據(jù)XML配置文件注入屬性的方法

發(fā)布時(shí)間:2020-10-19 15:01:10 來(lái)源:腳本之家 閱讀:98 作者:Advancing-Swift 欄目:編程語(yǔ)言

方法一使用setter方法

package com.swift;

public class Book {
 private String bookName;

 public void setBook(String bookName) {
  this.bookName = bookName;
 }

 @Override
 public String toString() {
  return "Book [book=" + bookName + "]";
 }
}

在Spring框架中,假定Servlet類中不能直接生成Book類的對(duì)象,并注入String bookName的屬性值

而需要通過(guò)配置文件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">
<!-- IoC 控制反轉(zhuǎn) SpringSpring根據(jù)XML配置文件注入屬性 -->
<bean id="book" class="com.swift.Book">
<property name="bookName" value="三體——黑暗森林"></property>
</bean>
</beans>

Servlet類代碼:

package com.swift;

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

@WebServlet("/book")
public class BookServlet extends HttpServlet {
 private static final long serialVersionUID = 1L;
 public BookServlet() {
  super();
 }
 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
  response.setCharacterEncoding("utf-8");
  response.setContentType("text/html;charset=utf-8");
  response.getWriter().append("Served at: ").append(request.getContextPath());
  @SuppressWarnings("resource")
  //就是下邊這幾句了
  ApplicationContext context=new ClassPathXmlApplicationContext("a.xml");
  Book book=(Book) context.getBean("book");
  String bookInfo=book.fun();
  response.getWriter().println();
  response.getWriter().append(bookInfo);
 }

 protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
  doGet(request, response);
 }

}

注意

beans 、context、core 和expression核心jar包

以及commons-logging 和log4j兩個(gè)jar包不要缺少

方法二使用有參構(gòu)造方法

以上這篇Spring根據(jù)XML配置文件注入屬性的方法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持億速云。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI