在java类中通过Spring XML传递URL

时间:2018-05-17 10:13:27

标签: java selenium automation cucumber

我想传递spring的XML文件中的URL并访问java类中的Url。

此文件链接到java文件,我想在java类文件中访问此文件。

Hello.XML file
 <beans profile="motzie_qa">
                <bean id="testProperties" class="com.motzie.TestProperties">
                    <property name="baseUrl" value="${10.10.5.88}" />
                    <property name="users">
                        <map>
                            <entry>
                                <key>
                                    <util:constant static-field="com.motzie.bean.User.Role.ADMIN" />
                                </key>
                                <bean class="com.motzie.bean.User">
                                    <constructor-arg value="testadmin@qasource.com" />
                                    <constructor-arg value="admin" />
                                </bean>
                            </entry>
                            <entry>
                                <key>
                                    <util:constant static-field="com.motzie.bean.User.Role.MASTER" />
                                </key>
                                <bean class="com.motzie.bean.User">
                                    <constructor-arg value="test@qasource.com" />
                                    <constructor-arg value="test$123" />
                                </bean>
                            </entry>
                    </map>
                </property>
                </bean>
            </beans>
        </beans>

0 个答案:

没有答案