weblogic

weblogic安装

风格不统一 提交于 2019-12-17 14:31:19
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 安装:https://blog.csdn.net/qq_41201550/article/details/80724527 linux平台如何卸载weblogic:https://blog.csdn.net/dengyu810/article/details/48166061 来源: oschina 链接: https://my.oschina.net/869088067/blog/3143976

Java报表工具技巧--在Style Report 中如何将报表服务部署到weblogic中

廉价感情. 提交于 2019-12-17 10:56:35
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> WebLogic是一个基于Javaee架构的中间件,BEA WebLogic是用于开发、集成、部署和管理大型分布式Web应用、网络应用和数据库应用的Java应用服务器,在企业应用服务器中比较普遍。 Style Report提供通过war文件,直接将报表应用部署到weblogic上的功能。用户首先在报表服务器的管理界面上将整个报表应用打成一个war文件,然后通过war文件将思达报表部署到weblogic上。 第一步: 创建war文件 登录报表服务器的管理界面,选择“服务器\配置\”页面,然后选择创建weblogic归档(war)文件。 选择weblogic的具体版本。点击“下一步” 在以上的输入框中填入相关的内容: 在Archive File Name中,推荐填写 c:/sree.ear 在Replet jar files中,将报表工具Style Report 中所有jar包填入,例如:C:/style report/lib/design.jar;C:/style report/lib/sree.jar;C:/style report/lib/etools.jar;C:/style report/lib/layer.jar。注意:C:/style report为实际客户安装的目录。 Extra

Weblogic 10.3.5 Overriding Spring Version

岁酱吖の 提交于 2019-12-17 07:38:26
问题 I am developing a web application using Oracle's OEPE distribution, including Weblogic server 10.3.5. WLS includes its own version of Spring, which appears to be 2.5.6.SEC01. However, we are trying to use Spring and Spring Security features specific to the 3.1 release. The Maven POM defines the Spring Version as a property to be 3.1.1.RELEASE (with that property plugged in to the sections, i.e.: <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>

如何抓取Thread Dump小结

北战南征 提交于 2019-12-14 17:40:29
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 当服务器挂起 , 崩溃或者性能底下时 , 就需要抓取服务器的线程堆栈 (Thread Dump) 用于后续的分析 . Thread dump 提供了当前活动的线程的快照 . 它提供了 JVM 中所有 Java 线程的栈跟踪信息 有很多方式可用于获取 Thread Dump, 一些是操作系统特定的命令 . 操作系统命令获取 ThreadDump: Windows: 1. 转向服务器的标准输出窗口并按下 Control + Break 组合键 , 之后需要将线程堆栈复制到文件中 UNIX/ Linux 首先查找到服务器的进程号 (process id), 然后获取堆栈 . 1. ps –ef | grep java 2. kill -3 <pid> 注意一定要谨慎 , 一步不慎就可能让服务器进程被杀死 ! JVM 自带的工具获取线程堆栈 : JDK 自带命令行工具获取 PID 并做 ThreadDump: 1. jps 2. jstack <pid> 使用 JVisualVM: Threads 标签页 à ThreadDump 按钮 . WebLogic 自带的获取 thread dump 的工具 : 1. webLogic.Admin 工具 a. 打开命令提示符 , 通过运行 <DOMAIN_HOME>/bin

Is it possible to do Hotswapping of ATG classes

落爺英雄遲暮 提交于 2019-12-14 04:16:26
问题 The deployment we follow is that we use runAssembler.bat to build an ear file and deploy it in a app server. We are using weblogic and jboss for testing purposes of the modules we built. However for every small change, we need to run runAssembler and build a new ear and deploy it in app server and restart the server. I would like to find out if anyone figured out a way to do Hotswapping of class files which are generated by the code we write in ATG environment in either weblogic or jboss. 回答1

What is weblogic.socket.Muxer?

与世无争的帅哥 提交于 2019-12-14 03:43:26
问题 Does any of you understand what weblogic.socket.Muxer is used for in WebLogic 8.1? Often in thread dumps I see stack traces similar to this: "ExecuteThread: '0' for queue: 'weblogic.socket.Muxer'" id=20 idx=0x68 tid=26709 prio=5 alive, in native, blocked, daemon -- Blocked trying to get lock: java/lang/String@0x2b673d373c50[fat lock] at jrockit/vm/Threads.waitForUnblockSignal()V(Native Method) at jrockit/vm/Locks.fatLockBlockOrSpin(Locks.java:1675)[optimized] at jrockit/vm/Locks.lockFat(Locks

Redirect context root in Weblogic

懵懂的女人 提交于 2019-12-14 03:01:45
问题 I have Spring Boot application which I deploy to Weblogic container. After it is deployed, I can access it using http://localhost:7001/my-application/ When I use http://localhost:7001/my-application - without trailing slash at the end, I'd like to redirect it to http://localhost:7001/my-application/ I know that Tomcat already has such feature as there is a flag you can change: /** * Whether requests to the context root should be redirected by appending a / to * the path. */ private Boolean

grails: how to change compiled GSPs (gsp*.class files)?

旧时模样 提交于 2019-12-14 02:06:53
问题 I'm using grails in weblogic and need to change a class file in a exploded deploy folder. But this class is actually a gsp compiled file. So, the question is: where GSP files (.class) stay in a war ? Note: I'm using external GSPs, setting grails.gsp.view.dir in Config.groovy file. 回答1: Since Grails 1.3.5, you just have to set grails.gsp.enable.reload = true in Config.groovy or set a system property -Dgrails.gsp.enable.reload=true to the appserver (tomcat, etc.) startup. GSP reloading in WAR

Deploy Spring-boot application to Weblogic : getting error

本小妞迷上赌 提交于 2019-12-14 00:25:38
问题 I'm trying to deploy a spring-boot application in a weblogic server. Therefore I follow some documented instructions such as: - create webapp folder - create dispatcherServlet-servlet.xml - create weblogic.xml - make MyApplication class extends SpringBootServletInitializer and implements WebApplicationInitializer, - turn the scope of embedded server to provided { <artifactId>spring-boot-starter-tomcat</artifactId> <scope>provided</scope> } - packaging to WAR in pom.xml Unfortunetely, I'm

java.lang.ClassNotFoundException: afu.com.sun.source.tree.Tree$Kind

无人久伴 提交于 2019-12-13 23:05:47
问题 When migrating our application from weblogic 12.1.3 to 12.2.1 we run into the following stacktrace during deployment of our EAR: <2018-06-05 16:17:03,765> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID "518856605645758" for task "2" on [partition-name: DOMAIN]. Error is: "java.lang.ClassNotFoundException: afu.com.sun.source.tree.Tree$Kind" java.lang.ClassNotFoundException: afu.com.sun.source.tree.Tree$Kind at weblogic.utils.classloaders