- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个奇怪的问题,Spring 不会尝试将定义的值传递给构造函数参数中的占位符。目前它被定义为 ${myProperty}
,但我可以在那里写任何东西,没有错误。它只是将文字字符串 ${myProperty}
传递给 bean 构造函数,否则配置似乎可以正常工作。
我的 beans.xml 如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
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
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<context:property-placeholder order="1" properties-ref="propertiesBean" />
<bean id="propertiesBean" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="properties">
<props>
<prop key="myProperty">Foo</prop>
</props>
</property>
</bean>
<bean id="wrapperBean" class="springapp.bean.Wrapper">
<constructor-arg value="${myProperty}">
</constructor-arg>
</bean>
</beans>
有谁知道我在这个配置中缺少什么。也许这是显而易见的事情,我对 Spring 没有太多经验。使用Spring 3.2.x版本和WildFly 8.1作为容器。
编辑:
beans.xml 的加载方式如下:
public class TestServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
private static final Log log = LogFactory.getLog(TestServlet.class);
private XmlBeanFactory factory;
public void init() throws ServletException {
ClassPathResource resource = new ClassPathResource("beans.xml", TestServlet.class.getClassLoader());
factory = new XmlBeanFactory(resource);
}
public void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
Wrapper bean = (Wrapper) factory.getBean("wrapperBean");
String value = bean.inner.value;
resp.getWriter().print(value);
}
}
最佳答案
您的加载有缺陷,您应该使用 ApplicationContext
而不是 BeanFactory
。
public class TestServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
private static final Log log = LogFactory.getLog(TestServlet.class);
private ApplicationContext ctx;
public void init() throws ServletException {
ctx = new ClassPathXmlApplicationContext("beans.xml");
}
public void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
Wrapper bean = ctx.getBean("wrapperBean", Wrapper.class);
String value = bean.inner.value;
resp.getWriter().print(value);
}
}
对于差异检查the reference guide .
关于java - Spring 不会尝试将值注入(inject)到 constructor-arg 占位符中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24281633/
我有这个代码。为了让它工作,我必须使用 Args&&... 而不是 Args... 或 Args&... 我注意到 args 从 & 转换为 const& 或 && 转换为 &。 Args...Arg
当我定义类时,我总是去 Class A(object): def __init__(self, arg): self.arg = arg def print_arg(s
假设我想定义两个 {Type} 类的变量。构造函数采用 1 个参数。下面两种方式是否完全等价(编译成相同的目标代码)? Type a(arg), b(arg); 和 Type a(arg); Type
(旁白:我是一名 Perl 程序员,正如您所知,这是我的第一个重要的 Java 程序。简单的术语将不胜感激。) 我有以下启动器作为编码工作: import java.lang.reflect.*; i
Math.nextUp(arg) 始终与 arg + Math.ulp(arg) 相同,还是我遗漏了什么? System.out.println( 0.5 + Math.ulp(0.5));
今天我在学习完美转发,我创建了这个代码示例 #include #include template auto toStdFun(Function&& fun, Args&&...ar
我想知道你会选择哪个选项? putStrLn (show randomNum) putStrLn $ show randomNum (putStrLn . show) randomNum 所有选项在语
我试图在 visual studio 2012 中编译一个库,它最初是用 c++ 为 visual studio 2015 编写的。我有一个错误说 'class' missing tag。 错误消息的
我在下面的代码中遇到了运行时异常ArrayIndexOutOfBoundException,行中: if ( args[0].equals("t") || args[0].equals("time")
我有以下代码 import React, { Component } from "react"; import { Accounts } from "meteor/accounts-base"; ex
这个问题已经有答案了: Difference between Arrays and 3 dots (Varargs) in java (3 个回答) 已关闭 5 年前。 受学校线性代数 I 和 II
所以我定义了一个函数: def getDistnace(self, strings, parentD, nodeName, nodeDistance): 我用它来调用: Node.getDistnac
这个问题在这里已经有了答案: subprocess.call() arguments ignored when using shell=True w/ list [duplicate] (2 个答案
我想将参数传递给 java 应用程序,但喜欢 linux 应用程序风格。 java 中的main 方法对所有参数使用一个String 数组。在 Linux 中,大多数应用程序接受如下参数:ls -l
这是我的代码片段 #include void change(int a[]){ printf("%p\n",&a); } int main(){
我需要使用 python 3.6 subprocess.run() 函数发出以下命令: gsettings set org.gnome.shell enabled-extensions "['appl
这两个函数是否有任何有意义的不同?有什么理由通常更喜欢一个而不是另一个吗? void foo(auto x, auto &... y) { /* ... */ } template void foo(
例如: def m(arg, ...args) { println "arg: $arg" println "args: $args" } m('arg', k:'v') 输出: ar
我对 Java 还很陌生。目前正在尝试将 args[] 中给出的文件名传递给此 FileReader,但当我编译时,它说找不到指定的文件。如果我对文件名进行硬编码,它就可以正常工作。这应该如何运作?
为什么这是一个语法错误??做这件事的合适方法是什么? >>> def f(*args, option=None): File "", line 1 def f(*args, option=
我是一名优秀的程序员,十分优秀!