Best J2EE framework for Crud, Master details, lists, user, security, etc?

Hi all,
Thanks in advanced for your constant help :)
My intention is to find a good J2EE framework to build small applications with the most common elements. ( Lists, Cruds, Master details, Search options, menus, user management, security, reporting, charting, etc).
Any thoughts ?

Any thoughts?

Similar Messages

  • Master-detail list - how to spread over multiple columns

    I am using the master-detail functionality to create a image viewer.
    I have a long list of master thumbnails, and rather than having them go down the page in one column, I would like to make them spread over 2 or 3 columns before the detail column. 
    (example of format I am trying to achieve - http://www.franbainbridgephotography.com.au/gallery.html (I dont mind whether master thumbnails are on right or left of detail photo))
    You can see my problem on http://www.wcwra.com/webpages/images.php
    Is this possible with the master-detail functionality?
    Thank you!

    The brilliant David Powers has fixed this for me on the main forum (vw2ureg was v close).  David's answer is :
    There is no way of making a single dataset repeat in multiple columns, because it's simply one element being repeated over and over.
    However, with a little out of the box thinking, you can do it quite easily with thumbnails. Instead of putting the master column repeat region in a block level element, use an inline element, <span>. Images are treated by browsers as inline elements, so this should work just fine. Change the following code from this:
    <div spry:region="dsPhotos" class="MasterContainer">
        <div class="MasterColumn" spry:repeat="dsPhotos" spry:setrow="dsPhotos"
        spry:hover="MasterColumnHover" spry:select="MasterColumnSelected">{Caption}</div>
    </div>
    to this:
    <div spry:region="dsPhotos" class="MasterContainer">
        <span class="MasterColumn" spry:repeat="dsPhotos" spry:setrow="dsPhotos"
        spry:hover="MasterColumnHover" spry:select="MasterColumnSelected">{Caption}</span>
    </div>
    In your CSS, set the width of the MasterColumn class to the width of your thumbnails, and the width of MasterContainer so that it's wide enough to accommodate two or more thumbnails. The thumbnails will flow into the column two or three abreast.

  • Best development framework for a beginner

    Hi, can somebody recommend a good( the best around if there is) framework for a beginner to start learning.
    i don't know a lot about frameworks and j2ee but i'm starting to learn.
    i don't have any hands on experience yet with any of them, i can't decide
    on which one to start with, i read a bit about spring,struts,EJB it looks like Spring's is the best
    but as i said i am not qualified to judge.
    waiting to hear some suggestions
    thanks

    well which is easier to hear an opinion from somebody who has experience or to just
    go dig it in the sands?
    i don't mean to be rude either i am trying to get qualified i'm not asking you to do it for me
    all am asking for is an opinion from somebody who has experience and who knows what he's talking about.
    i don't have experience at all with j2ee development so i did some research and i learned that the best way to develop is using a framework
    i did some more research and i read a bit on each framework i know there's a lot of them but again from my readings i concluded that these are the most widely used but again i know nothing about them, i'm reading spring docs now in fact but what good would it be if i find out that some other framework is better more used, more robust..?.
    thanks you

  • More than 5 rows in the detail table for a Master Detail Portlet

    I have a Master Detail Portlet.   I originally had 5 fields in the detail portlet.  I have added a column to the detail portlet and now the last column is wrapped around in the portlet.  I do not see a way to force it to be on the same line as the rest of the columns for the detail table.
    Do I need to just delete it and re-create the portlet?
    Below is the from the browser when executing the portlet.
    function show_context_help(h) {   newWindow = window.open(h,"Help", "menubar=1,toolbar=1,scrollbars=1,resizable=1,width=700, height=500"); }  
    Master action:
    [None]
    Insert
    Update
    Delete
    Carrier
    Carname
    Line Haul Carrier?
    Detail actions
    Warehouse
    Carrier
    Service
    Ship To
    Country Code
    Hold for
    Pickup
    Service?
    Associate LPN
    Required?
    [None]
    Insert
    Update
    Delete
    [None]
    Insert
    Update
    Delete
    [None]
    Insert
    Update
    Delete
    [None]
    Insert
    Update
    Delete
    [None]
    Insert
    Update
    Delete
    [None]
    Insert
    Update
    Delete
    [None]
    Insert
    Update
    Delete
    [None]
    Insert
    Update
    Delete
    [None]
    Insert
    Update
    Delete
    [None]
    Insert
    Update
    Delete

    Easy, The default on the detail field had the Begin on New Line flag set to on.   By unchecking it I got the desired behavior.

  • Using Entity Framework with Crystal Master Detail Reporting

    My project is a WPF project connected to a SQL Server Compact Edition database.  Since Crystal does not support nullable types, I have created classes specifically for the report to consume.  This is a simplified version of what I am attempting to do.
    For example...
    class Band
    public string BandName { get; set; }
    public string BandCity { get; set; }
    public List<BandRecording> RecordingsList { get; set; }
    class BandRecording
    public string Year { get; set; }
    public string Description { get; set; }
    In my code behind for this report, I am using Entity Framework to pull the data.  Just pulling information for one band...
    using (RockEntities re = new RockEntities())
    var bandinfo = (from b in re.Band
    where b.BandName == "BT"
    select new
    b.BandName,
    b.BandCity,
    Recordings = b.Recordings.OrderBy(z => z.Year)
    }).FirstOrDefault();
    OK, now I start moving to the data to class I have defined...
    Band b = new Band();
    b.RecordingsList = new List<BandRecording>();
    b.BandName = bandinfo.BandName;
    b.BandCity = bandinfo.BandCity;
    foreach(var Recording in bandinfo.Recordings)
    BandRecording br = new BandRecording();
    br.Year = Recording.Year;
    br.Description = Recording.Description;
    b.RecordingsList.Add(br);
    Since Crystal Supports IEnumerable, I create a list to hold the main record (although I am only reporting on one band)...
    List<Band> lb = new List<Band>();
    lb.Add(lb);
    ReportDocument rd = new ReportDocument();
    rd.Load("BandReport.rpt");
    rd.SetDataSource(lb);
    I have put the Band info in the Report Header section.  This is all working fine. In the details section I would like to put the Band Recording info.  I haven't figured out how to do this.  I have put the fields in the Details section, but how do I tell the details section to use the inner List<BandRecordings>?
    Any help would be greatly appreciated.

    Only way I can see of doing this would be to place emprty formulas into the section. The populate the formula(s) with the required field;
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Public Class Form1
    Inherits System.Windows.Forms.Form
    Dim Report As New CrystalReport1()
    Dim FormulaFields As FormulaFieldDefinitions
    Dim FormulaField As FormulaFieldDefinition
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    FormulaFields = Report.DataDefinition.FormulaFields
    FormulaField = FormulaFields.Item(0)
    FormulaField.Text = "[formula text]"
    CrystalReportViewer1.ReportSource = Report
    End Sub
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Help needed for implementing master details region on the search page

    Hi All,
         I am new to Jdeveloper and OAF. I need to develop a sales order search page, for which the VO query is
         SELECT ch.order_number order_number
         , ch.attribute97 order_detail
         , ch.attribute14 sold_to
         , ch.attribute50 business_group
         , ch.source_doc_type source_doc_type
         , ch.line_number line_number
         , ch.transaction_amount transaction_amount
         , ch.split_pct||'%' split_percentage
         , jrs.NAME resource_name
         , jrr.resource_number resource_number
         , ch.processed_date processed_date
         , cq.NAME quota_name
         , ch.attribute34 transaction_type
         , ch.attribute35 order_type
         , ch.attribute51 product_line
         , ch.attribute54 city
         , ch.attribute55 state
         , ch.attribute56 district
         , ch.attribute57 area
         , ch.attribute61 salesrep_number
         , ch.attribute62 region
         , ch.attribute64 sales_org
         , ch.attribute68 terr_order_type
         , ch.attribute58 market_indicator
         FROM cn_commission_lines_all cl
         , cn_commission_headers_all ch
         , cn_quotas_all cq
         , jtf_rs_salesreps jrs
         , jtf_rs_resource_extns jrr
         WHERE cl.direct_salesrep_id = cl.credited_salesrep_id
         AND cl.commission_header_id = ch.commission_header_id
         AND cl.quota_id = cq.quota_id
         AND ch.direct_salesrep_id = jrs.salesrep_id
         AND jrr.resource_id = jrs.resource_id
         AND (NVL(ch.source_doc_type,'X') = 'EVEREST' OR NVL(ch.source_doc_type,'X') = 'SAP')
    AND (NVL(ch.attribute50,'X') = 'EMG' OR NVL(ch.attribute50,'X') = 'LSCA')
    I have 3 query parameters business_group, source_doc_type and sales order number.
    The results region should look like,
    Header region with order_number,order_detail,sold_to,business_group and the source_doc_type columns.
    The remaining fields go into the details region.
    Highly appreciate if anyone could help me on this.
    Regards,

    Hi,
    When I have a messagestyle layout for my header, I am not able to find the items in this region for the querycriteriamap. I need to populate the header region with values entered in the search region.
    For example: I create the OrderNumber messagestyledtext item in the messagecomponent layout of the header region. In simplesearchmappings, for the querycriteriamap, I am not able to find this item in the drop down for Results Item property.
    Please help me to understand.
    Regards,

  • What is the best stage3d framework for 3d games on iOS ?

    Hello !
    if you cant answer what is best then :
    what is the easiest ?
    what has the best performance ?
    thankyou !

    In my experience I would say that Starling is the most easiest and Genome2d has the best performance, although it is the most difficult to get started with.
    Also I would say that at the moment (AIR 3.2 / 3.3 Beta), if you are targetting iOS, you can still gain better performance with GPU (+some optimizing) compared to Starling at least. This does not apply always, but at least in many cases. Here are some benchmark results: http://esdot.ca/site/2012/performance-comparison-starling-vs-gpu-render-mode

  • What's the best IoC Framework for Flex?

    I am looking at Prana at the moment which is actually for
    Actionscript but may work for my purposes. Anyone care to give an
    opinion on this I would appreciate the input.
    -Joe

    Unfortunately, this is the Adobe Connect Forum for Adobe Connect questions and not Flex. Please post your question in the Flex forum so you will get the right support folks attention.

  • Master VO in Master/Detail executing hundreds of times for one row...

    JDeveloper 11.1.1.6.0
    I have an odd problem whereby the master VO in a master detail object is executing hundreds of times, seemingly unnecessarily.
    A little more detail:
    I have a query page and a details page for this Master - detail object. After querying, a user can click a pencil icon to view/add/edit child records. These VOs are linked by a View Link, the link relationship is sound.
    I have added an method action so that clicking on the pencil icon next to the master record causes 10 child records to be created, this is a time tracking application and I need to create empty time records for a given pay period if there are none already.
    The method(s) used to create the child records are located in the master VO Impl.
    When I click the pencil icon the records are created but the master VO is executing hundreds (thousands?) of times as seen in my logger. I have added some logging to dump query parameters (executeQueryForCollection) and for each master VO execution the params are exactly the same. The Master and Detail VOs have key attributes defined.
    Any idea what might be the cause of this issue? I am not sure where to look anymore.
    Thanks...

    Hi,
    can you provide a test case based on the HR schema? If so, zip it up and rename the "zip" extension to "unzip". My mail address is in my OTN profile
    Frank

  • Create Form setup for Master Detail Form

    Hello All,
    I have to create a Master Detail OAF Form where user will enter data in the header section and then fill the detail section on the same page. Now, I have created Header section but when I go to detail section and fill the information I got an error because HeaderId for header section is not passing to the detail section. I have created even VL also.
    Kindly let me know that what all steps are required to set the View Link for this Master Detail form.
    Many Thanks in advance.
    Thanks,
    Sandy

    Hello Gyan,
    Thanks for the prompt reply. I would also like to know that once AO will create what all steps I need to take. Like I have to create a VL and then I need to create two regions and now what all properties I need to update to work M-D relationship.
    Thanks,
    Sandy

  • Master Detail Form - Problem using built in wizard

    Hi There
    We are working on Application express 2.2.
    We are facing problems for a master detail form using Wizard. The
    details are as follows : >>
    1) Master table : TS_ENTRY_TXN
    trans_id P.K.
    2) Detail table : TS_ENTRY_TXN_DETAIL
    a)trans_id
    b)sub_trans_id Composite P.K.(trans_id,sub_trans_id) & these are
    based on sequences.
    If i try to build a master detail form using the Wizard, the options
    for providing P.K. for master & detail are listed which we used.
    As it is a master detail form, we want to carry trans_id to the detail
    for updations/insertions which doesn't happen.
    The MRU fails with oracle error :
    Error in mru internal routine: ORA-20001: Error in MRU: row= 1,
    ORA-01400: cannot insert NULL into
    ("TS_APEX"."TS_ENTRY_TXN_DETAIL"."ENTRY_ID"), insert into
    "TS_APEX"."TS_ENTRY_TXN_DETAIL" ( "ENTRY_ID", "SUB_ENTRY_ID",
    "SMR_ID", "TASK_ID", "SUB_TASK_ID", "TIME_SPENT", "REMARKS") values (
    :b1, :b2, :b3, :b4, :b5, :b6, :b7)
    Is there any other way to build master detail wihout wizard.
    Could you please suggest us better way to complete this task.

    If I'm reading this correctly, then one of the columns in your detail tables' primary key is also the foreign key pointing to your master table? If that's the case, then that's not supported by the wizard. For the wizard generated master-detail form to work properly, you'll have to have a foreign key column in your detail table which is not part of your detail table's primary key.
    Hope this helps,
    Marc

  • Master/detail doesn't work in IE

    I know this has been asked in other ways, but I can't find the answer to my particular situation. Why doesn't the master/detail list work in IE 8, but it does in Firefox? Here is the URL: http://www.boilerbuddy.com/rep_lookup_new.htm. For example, choosing CO should bring up a company listing.

    Try the following
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <link href="SpryAssets/SpryMasterDetail.css" rel="stylesheet">
    </head>
    <body>
    <div class="MasterDetail">
      <div spry:region="ds1BBrep4" class="MasterContainer">
        <select name="myselect" id="myselect" onChange="ds1BBrep4.setCurrentRowNumber(this.selectedIndex);">
          <option value="">Please chhose a state...</option>
          <option spry:repeat="ds1BBrep4" value="{State}" spry:setrow="ds1BBrep4">{State}</option>
        </select>
      </div>
      <div spry:detailregion="ds1BBrep4" class="DetailContainer">
        <div class="DetailColumn">{Rep}</div>
      </div>
      <br style="clear:both">
    </div>
    <script src="SpryAssets/SpryData.js"></script>
    <script src="SpryAssets/SpryHTMLDataSet.js"></script>
    <script>
    var ds1BBrep4 = new Spry.Data.HTMLDataSet("data/rep_db.htm", "reps", {sortOnLoad: "State", sortOrderOnLoad: "ascending"});
    ds1BBrep4BBrep4.setColumnType("Rep", "html");
    </script>
    </body>
    </html>
    Gramps

  • Master detail samples not displaying in IE

    I have copied the spry framework to our web server. All
    samples seem to work in IE except for the master detail samples.
    Any idea why it wouldn't be working in IE?

    No clue, as its something that your jQuery plugin does. Probably some CSS issue. I suggest you post that issue in the jQuery tools forum.
    And a comment about your region observer, again, there are items function that do not need to be there, they are obsoleet and even duplicate.\
    Spry.Data.Region.addObserver('items', {
         onPostUpdate : function(observer, region){
              // your slider code here
    // execute your scripts when DOM is ready. this is a good habit
    $(function() { // NOT NEEDED BECAUSE YOUR DOM IS READY WHEN THE OBSERVER FIRES
    // initialize scrollable
         $("div.scrollable").scrollable();     
    $(document).ready(function(){ // YOU ARE DOING A AJAX CALL, BUT YOU ARE DOING NOTHING WITH THE XML
    $.ajax({
            type: "GET",
         url: "Residential.xml",
         dataType: "xml",
         success: function(xml) {
                //END scrollable
    }); //END observer
    I made all useless scripts red and bold, and added the reason in comments. Sorry about the caps, forgot that it was on

  • Master/Details Form -- Relation Property

    Is it possible to set the relation join condition property for a master/detail form programmatically. If so, what is the syntax?
    Thanks,
    Paul Howard
    [email protected]

    Use this built in
    SET_RELATION_PROPERTY
    (relation_name VARCHAR2,
    property NUMBER,
    value NUMBER);
    for more detail check from the help topics. Thanks for the info but the property I want to set isn't a listed property for that built-in. I need to change the actual join statement in the relation object. This is what I'm attempting to accomplish.
    I have a master-detail form with the master block containing 1 field (mfg_date)/ detail block containing order information(multiple records). This form allows me to step thru my orders by mfg_date. I need to be able to also step thru these orders by due_date if the operator chooses with a radio button. If I change the query_data_name and the the actual join statement in the relation object from the object navigator and compile and run it works fine. I can change the query_data_name programmatically but I can't find any info on changing the join statement programatically. Or is there another way to change the master block within the same form some other way?
    Thanks for any pointers!
    Paul Howard
    [email protected]

  • Sharepoint 2013 master/detail

    In a sharepoint 2013 web part, I am planning to have a master/detail association. The master will contain data that does not change where the detail will be data that is entered on a weekly basis.
    My questions include the following:
    1. My fist question is if I need 1 or 2 custom lists. Right now in the workflow that I am planning to allow a user will keep entering data into a custom list until the custom list request is approved by the 'authorized' user. The data is stored in the
    1st custom list.
    However when I am ready to setup the master/detail webpart, I am not certain if I should use the the existing custom list or start a new custom list. If I use a new custom list, I would pass the applicable information from the approved custom
    list to the new custom list and that would be the 'master' part of the master/detail webpart. The detail would be the weekly data that is submitted. 
    2. Right now I do know who how I will store the data that will appear on the master/detail webpart. Will the 'master' data come from 1 custom list and the repeating data that is entered weekly will come from another list? Basically can you tell me how the
    data should be stored for the master/detail webpart?

    Hi,
    From your description, I know you have some questions when you create a master/detail web part in SharePoint 2013.
    In your case, you just need one custom list. Before you create the master/detail, you should create a custom list with enough columns. When you create your master/detail, you could select some columns from columns in the custom list to display in master,
    and select other columns from columns in the custom list to display in detail. You can learn how to create the master/detail by referring to this blog:
    http://blog.splibrarian.com/2012/05/21/connecting-web-parts-with-a-selector-and-a-detail-pane-sharepoint-2010-version/. Though it is for SP 2010 it should work the same in SP 2013.
    As you want to prevent user to edit item when the item is approved, you could add another workflow to remove edit permission of current item. You can refer to this article:https://social.technet.microsoft.com/Forums/sharepoint/en-US/e2e59b58-8623-472b-8314-f2967e5271e9/sharepoint-2013-workflow-update-list-item-permissions-in-workflow?forum=sharepointgeneral.
    Regards.
    Vincent Han
    TechNet Community Support

Maybe you are looking for

  • How to catch CONVT_NO_NUMBER runtime error in ABAP Proxy

    Hi all,        In our abap proxy program, sometimes the CONVT_NO_NUMBER will happen and cause the program dump and then stuck the whole queue. I noticed that this error cannot be caught by CX_ROOT exception class. So, how can I catch this runtime err

  • Why Define WebService system occur error in VC7.0?

    i used SDN How-to document <Creation of VC Model Using Exchange Rate Web Service>. iVC7.0>tools->define web services), i use webservices URL :http://www.webservicex.net/CurrencyConvertor.asmx/WSDL but VC7.0 System display Failure. error info: Invalid

  • Leopard Graphics Extensions Issues (ALWAYS WITH THE GRAPHICS!)

    I'm perfectly new to this support for the purposes of this problem. The problem that has recently popped up is when ever I log in I'm greeted with two messages about "AppleIntelGMAX3100.kext" and "AppleIntelGMAX3100FB.kext" not being installed proper

  • IWeb SEO Tool after iDisk is Gone

    Hello, I used iWeb SEO Tool to add metadata to my site for better search engine identification with Google Analytics using Text Wrangler also.  The iWeb SEO Tool uses idisk to find the website and add the code.  I recently got hosting from HostExcell

  • Blinking Eyes in After Effects

    Hello! I am working on my first all out animation video in After Effects. I have a vector graphic of a person and I want to make him blink frequently throughout the video. I am going to create several different versions of the eyes (all the way open,