jdeveloper

How can i solve a NoClassDefFoundError?

瘦欲@ 提交于 2019-12-01 09:50:28
问题 I have installed Oracle Weblogic 11g on Oracle Linux and I tried to complete one of Oracle's ADF tutorials using jdeveloper 11g. When I run my project it compiles successfully with no errors. It starts deploying the application to the weblogic server and my default internet browser opens. But then an Error "500 Internal server error" appears. I'm getting the following error: java.lang.NoClassDefFoundError: Could not initialize class org.apache.myfaces.trinidadinternal.convert.ColorConverter

Jasper Reports “package net.sf.jasperreports.engine does not exist” exception in JDeveloper 11.1 using WebLogic only in EAR Web Page

痴心易碎 提交于 2019-12-01 08:50:39
I'm using JDeveloper 11.1, Oracle 11 and TIBCO JasperReports 6.0.1. I'm having problems trying to generate Jasper Reports from my web page (ViewController) while using an ApplicationModule (Model - EJB) for doing that. At the end the PDF file has to be sent via email, that's why I let it into the Model project. If I execute the ApplicationModule, it works fine, no exceptions, the PDF is very well generated and sent. However, if I execute the client method since a web page I got this exception : net.sf.jasperreports.engine.JRException: Errors were encountered when compiling report expressions

Does anybody know what encrypting technique is JDeveloper/SQL Developer using to persist credentials?

白昼怎懂夜的黑 提交于 2019-11-29 18:57:20
I'd be more than interesting for me to understand which technique is being used here to persist sensible data since I'm needing to implement a similar solution. Here's a sample connection configuration and the resulting exported snippet: <?xml version = '1.0' encoding = 'UTF-8'?> <References xmlns="http://xmlns.oracle.com/adf/jndi"> <Reference name="My Connection" className="oracle.jdeveloper.db.adapter.DatabaseProvider" xmlns=""> <Factory className="oracle.jdeveloper.db.adapter.DatabaseProviderFactory"/> <RefAddresses> <StringRefAddr addrType="user"> <Contents>username</Contents> <

Build Java entire project jar using JDeveloper

女生的网名这么多〃 提交于 2019-11-28 14:29:24
I am using JDeveloper 11g to develop a desktop application. I want to make entire project jar which is run-able in java environment.. if I use only standard Java library jar works fine but my project contains external library like JfreeChart, Comm, Hibernate3 etc etc... when I try to make jar Its shows errors how can I make entire jar of my projects along with external library's. thank you Shantanu Banerjee Please follow the below instructions.. Right-click project and select properties. Click on Deployment, setup new Deployment by entering Deployment Profile type and name. Now edit Deployment

Unitils and DBMaintainer - how to make them work with multiple users/schemas?

痞子三分冷 提交于 2019-11-28 05:46:43
问题 I am working on a new Oracle ADF project, that is using Oragle 10g Database, and I am using Unitils and DBMaintainer in our project for: updating the db structure unittesting read in seed data read in test data List item In our project, we have 2 schemas, and 2 db users that have privilegies to connect to these schemas. I have them in a folder structure with incremental names and I am using the @convention for script naming. 001_@schemaA_name.sql 002_@schemaB_name.sql 003_@schemaA_name.sql

create java library file

早过忘川 提交于 2019-11-28 01:29:35
问题 I'm using number of java files as common in different ADF projects, I want to archive them in jar file so I can import this archive file from any new project to use the java libraries in the project, I tried create it in jdeveloper but no luck. Thank you for any advice, 回答1: You can use the following article to understand the way. creating a Jar file jar cf jar-file input-file(s) But still you can zip a file using windows zip utility or winzip and rename it as a jar file. It is not official