正常的按照网络上的说明进行了安装
1\
在访问 localhost:7001/console的时候,用注册的用户名没有办法登陆。。。。。
查找了相关论坛后
在 domain下security 文件夹下 建立 boot.properties 文件。写入
username=xxxx
passward=xxxx
才能登陆。。。。。。
2、安装了 deploy 后 默认context path 可能会变。
3、需要修改 web.xml 中的 classpath xxxx*.xml,weblogic 不识别这样的通配符,需要写全。
4需要写个 WEB-INF/weblogic.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE weblogic-web-app PUBLIC "-//BEA Systems, Inc.//DTD Web Application 6.1//EN" "http://www.bea.com/servers/wls610/dtd/weblogic-web-jar.dtd">
<weblogic-web-app>
<context-root>/</context-root>
</weblogic-web-app>
5据说一些jar包需要配置修改,我没遇到。
6遇到了JSP乱码问题,发现是因为用了win下的记事本编辑输入汉字。改成myeclips就ok了~