中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring根據XML配置文件注入屬性的方法

發布時間:2020-10-19 15:01:10 來源:腳本之家 閱讀:101 作者:Advancing-Swift 欄目:編程語言

方法一使用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類的對象,并注入String bookName的屬性值

而需要通過配置文件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 控制反轉 SpringSpring根據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兩個jar包不要缺少

方法二使用有參構造方法

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

盖州市| 微博| 丰原市| 龙山县| 全南县| 鄢陵县| 交口县| 汉源县| 普陀区| 宝坻区| 儋州市| 青州市| 二连浩特市| 凭祥市| 穆棱市| 广饶县| 开鲁县| 淮南市| 岳阳县| 定襄县| 望奎县| 东海县| 五莲县| 永泰县| 伊通| 城固县| 锦州市| 灌云县| 济源市| 治县。| 成安县| 盖州市| 清原| 田林县| 南靖县| 如东县| 长治市| 都江堰市| 杂多县| 溆浦县| 鄂伦春自治旗|