Posted on 2010-03-01 18:45
断点 阅读(1124)
评论(1) 编辑 收藏 所属分类:
WebLogic
1.在web项目WEB-INF/下创建weblogic.xml文件。
weblogic.xml文件内容如下:
<?xml version="1.0" encoding="UTF-8"?>
<weblogic-web-app xmlns="http://www.bea.com/ns/weblogic/90">
<context-root>/pcis</context-root>
</weblogic-web-app>
其中:<context-root>/pcis</context-root>中pcis该web项目文件夹名称;
2.在web项目中找到spring的配置文件applicationContext.xml,并在其中配置数据源。
<bean id="myDataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiName">
<value>jdbc/pcis</value>
</property>
<property name="jndiEnvironment">
<props>
<prop key="java.naming.provider.url">t3://localhost:7001</prop>
<prop key="java.naming.factory.initial">weblogic.jndi.WLInitialContextFactory</prop>
</props>
</property>
</bean>
3.启动E:\bea\user_projects\domains\base_domain\bin下的startWebLogic.cmd,登录:http://localhost:7001/console/ 。
(1)在左边的Domain Structure下base_domain/Services/JDBC/Data Sources下配置数据源,如jdbc/pcis。
(2)在左边的Domain Structure下base_domain/Deployments中配置发布的工程。
注意:在出现这个“What do you want to name this deployment?”的地方,填上工程的发布名,如:pcis
4.在base_domain/Deployments下,选择要启动的工程,点击“Start”。
5.工程启动完以后,在IE上输入 http://localhost:7001/pcis ,验证是否成功登录。