Como fazer com que a imagem dimensione seu tamanho automaticamente de acordo com o tamanho do pai JLabel, no Netbeans GUI Builder?

FUNDO:- Sou obrigado a criar uma GUI Swing usando o Netbeans GUI Builder. A primeira subtarefa é exibir uma imagem em todo o plano de fundo.

Eu seguium tutorial para fazer isso. Basicamente, fiz um JFrame, configurei o layout para GridBagLayout e adicionei um JPanel transparente (desmarcando a propriedade opaca). (Questão 1)

Depois disso, adicionei um JLabel ao JFrame, removi o texto e adicionei uma imagem. (Questão 2)

QUESTÕES:-

Primeiro, quando adiciono o JPanel,ele não mostra suas alças de redimensionamento. Pesquisei um pouco no Google e acheieste tutorial, no qual é possível observar que, ao criar um JPanel, ele mostra automaticamente suas alças de redimensionamento, que podem ser arrastadas para redimensioná-lo.

Mas o meu não (captura de tela abaixo)Então, existe alguma propriedade ou algo que pode ser ajustado para que eu possa redimensioná-la? Porqueminha intenção é usar esses painéis transparentes para conter componentes (botões etc.) no plano de fundo, para que ele transcorra todo o pai da tela / janela / JFrame.

Segundo, como a imagem que estou usando tem algumas dimensões de 1024x768, entãoparece ser muito maior que seus componentes principais.

Como sou novato e não tenho certeza se o tamanho da imagem de plano de fundo precisa ser ajustado medindo a largura e a altura do pixel do pai e convertendo o tamanho da imagem real para esse tamanho em algum programa como o Adobe Photoshop. Mas tenho certeza de que deve haver uma maneira mais prática de fazer isso.

Eu quero que a imagem se redimensione automaticamente de acordo com o tamanho do pai, quando é inicialmente colocada no JLabel pai. Como eu posso fazer isso? Por favor, diga-me a maneira mais fácil, de preferência no GUI Builder.

Também quero garantir que o tamanho da imagem, o tamanho do JLabel pai, o tamanho do JPanel se ajustem ao quadro quando eu alterar o tamanho da janela posteriormente ao usar este aplicativo ou se houver uma maneira de desativar o dimensionamento do janela completamente.

EDIT1 @Braj

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

package com.dev_nna.dbp;


public class JFrameParent extends javax.swing.JFrame {

    /**
     * Creates new form JFrameParent
     */
    public JFrameParent() {
        initComponents();
    }

    /**
     * This method is called from within the constructor to initialize the form.
     * WARNING: Do NOT modify this code. The content of this method is always
     * regenerated by the Form Editor.
     */
    @SuppressWarnings("unchecked")
    // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
    private void initComponents() {

        jPanel1 = new javax.swing.JPanel();
        jLabel1 = new javax.swing.JLabel();

        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
        getContentPane().setLayout(new java.awt.GridBagLayout());

        javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
        jPanel1.setLayout(jPanel1Layout);
        jPanel1Layout.setHorizontalGroup(
            jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGap(0, 0, Short.MAX_VALUE)
        );
        jPanel1Layout.setVerticalGroup(
            jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGap(0, 0, Short.MAX_VALUE)
        );

        getContentPane().add(jPanel1, new java.awt.GridBagConstraints());

        jLabel1.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/dev_nna/dbp/scheduler/resources/Abstract-white-and-blue-backgrounds.jpg"))); // NOI18N
        jLabel1.setText("jLabel1");
        getContentPane().add(jLabel1, new java.awt.GridBagConstraints());

        pack();
    }// </editor-fold>                        

    /**
     * @param args the command line arguments
     */
    public static void main(String args[]) {
        /* Set the Nimbus look and feel */
        //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
        /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
         * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
         */
        try {
            for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                if ("Nimbus".equals(info.getName())) {
                    javax.swing.UIManager.setLookAndFeel(info.getClassName());
                    break;
                }
            }
        } catch (ClassNotFoundException ex) {
            java.util.logging.Logger.getLogger(JFrameParent.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (InstantiationException ex) {
            java.util.logging.Logger.getLogger(JFrameParent.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (IllegalAccessException ex) {
            java.util.logging.Logger.getLogger(JFrameParent.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (javax.swing.UnsupportedLookAndFeelException ex) {
            java.util.logging.Logger.getLogger(JFrameParent.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        }
        //</editor-fold>

        /* Create and display the form */
        java.awt.EventQueue.invokeLater(new Runnable() {
            public void run() {
                new JFrameParent().setVisible(true);
            }
        });
    }

    // Variables declaration - do not modify                     
    private javax.swing.JLabel jLabel1;
    private javax.swing.JPanel jPanel1;
    // End of variables declaration                   
}

questionAnswers(1)

yourAnswerToTheQuestion