当前位置: 首页 > 知识库问答 >
问题:

启动配置biffviewer引用不存在的项目

吕霍英
2023-03-14

我在我的项目中添加了一些远程存储库,它似乎扰乱了我的启动配置。

import java.awt.FlowLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFormattedTextField;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPasswordField;
import javax.swing.JTextField;
import javax.swing.SwingUtilities;

import com.package.chestionar.controller.LoginController;

/**
 * This code was edited or generated using CloudGarden's Jigloo
 * SWT/Swing GUI Builder, which is free for non-commercial
 * use. If Jigloo is being used commercially (ie, by a corporation,
 * company or business for any purpose whatever) then you
 * should purchase a license for each developer using Jigloo.
 * Please visit www.cloudgarden.com for details.
 * Use of Jigloo implies acceptance of these licensing terms.
 * A COMMERCIAL LICENSE HAS NOT BEEN PURCHASED FOR
 * THIS MACHINE, SO JIGLOO OR THIS CODE CANNOT BE USED
 * LEGALLY FOR ANY CORPORATE OR COMMERCIAL PURPOSE.
 */
public class JLogin extends javax.swing.JDialog {
    private JLabel lblUtilizator;
    private JLabel lblParola;
    private JButton btLogin;
    private JLabel lblMesaj;
    private JPasswordField txtParola;
    private JButton btInchide;
    private JTextField txtUtilizator;
    private LoginController loginController = new LoginController();
    //daca se logeaza cu success, session e true
    private boolean session = false;
    //numele utilizatorului;
    private String utilizator;

    /**
    * Auto-generated main method to display this JDialog
    */
    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                JFrame frame = new JFrame();
                JLogin inst = new JLogin(frame);
                inst.setVisible(true);
            }
        });
    }

    public JLogin(JFrame frame) {
        super(frame,"Loginn");
        initGUI();
    }

    private void initGUI() {
        try {
            getContentPane().setLayout(null);
            setModal(true);
            {
                lblUtilizator = new JLabel();
                getContentPane().add(lblUtilizator);
                lblUtilizator.setText("Utilizatorrr");
                lblUtilizator.setBounds(48, 35, 90, 16);
            }
            {
                txtUtilizator = new JTextField();
                getContentPane().add(txtUtilizator);
                txtUtilizator.setBounds(150, 32, 171, 23);
            }
            {
                lblParola = new JLabel();
                getContentPane().add(lblParola);
                lblParola.setText("Parola");
                lblParola.setBounds(48, 64, 48, 16);
            }
            {
                btLogin = new JButton();
                getContentPane().add(btLogin);
                btLogin.setText("Login");
                btLogin.setBounds(37, 130, 80, 23);
                btLogin.addActionListener(new ActionListener() {
                    public void actionPerformed(ActionEvent evt) {
                        try {
                            utilizator = txtUtilizator.getText();
                            session = loginController.login(txtUtilizator.getText(), txtParola.getText());
                            dispose();
                        } catch (Exception e) {
                            session = false;
                            lblMesaj.setText(e.getMessage());
                        }

                    }
                });
            }
            {
                btInchide = new JButton();
                getContentPane().add(btInchide);
                btInchide.setText("Inchide");
                btInchide.setBounds(237, 130, 84, 23);
                btInchide.addActionListener(new ActionListener() {
                    public void actionPerformed(ActionEvent evt) {
                        session = false;
                        dispose();
                    }
                });
            }
            {
                lblMesaj = new JLabel();
                getContentPane().add(lblMesaj);
                lblMesaj.setBounds(48, 103, 273, 16);
                lblMesaj.setForeground(new java.awt.Color(255,0,0));
            }
            {
                txtParola = new JPasswordField();
                getContentPane().add(txtParola);
                txtParola.setBounds(150, 61, 171, 23);
            }
            this.setSize(389, 202);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }


    public boolean isValid() {
        return session;
    }
    public String getUtilizator() {
        return utilizator;
    }
}

我不知道该怎么办,所以我需要一些帮助。有人能帮帮我吗?如果这个问题看起来很傻,对不起,但我从昨晚开始就试图弄清楚了。

共有1个答案

马哲
2023-03-14

是的。错误:未解决的编译问题:ChromeDriver无法解析为类型

newpackage.MyClass.main(MyClass.java:16)
 类似资料:
  • 当试图将测试作为TestNG套件运行时,我会得到一个非常神秘的错误消息,说TestNG不能启动,因为它引用了一个不存在的项目。我想我的项目确实存在,我在包资源管理器中看到它!

  • 我是Spring开发的新手,所以我尝试将Jersey RESTful api依赖项添加到我的一个maven项目中。不幸的是,我不得不添加一些远程存储库,这似乎扰乱了我的启动配置。现在,当我尝试启动任何旧的Maven项目时,我总是得到这样的错误: 启动配置FastDateFormat引用不存在的项目泽西。 谢谢

  • 问题内容: 当尝试作为TestNG套件运行测试时,我会收到一条非常隐秘的错误消息,提示TestNG无法启动,因为它引用了一个不存在的项目。我认为我的项目确实存在,我在软件包浏览器中看到了它! 问题答案: 事实证明,您只需要确保您的项目是Java Project 而不是Simple项目即可。 检查 导航器是否 显示与该文件夹关联的 蓝色小“ J” 。如果没有,那么您已经创建了一个简单项目。 “看来您

  • 配置方式 Sentinel 提供如下的配置方式: JVM -D 参数方式 properties 文件方式(1.7.0 版本开始支持) 其中,project.name 参数只能通过 JVM -D 参数方式配置(since 1.8.0 取消该限制),其它参数支持所有的配置方式。 优先级顺序:JVM -D 参数的优先级最高。若 properties 和 JVM 参数中有相同项的配置,以 JVM 参数配置

  • 本文向大家介绍详解VSCode配置启动Vue项目,包括了详解VSCode配置启动Vue项目的使用技巧和注意事项,需要的朋友参考一下 下载安装并配置VSCode 随便百度上搜个最新的VSCode安装好后,点击Ctrl + Shit + X打开插件扩展窗口进行插件扩展,这里要安装两个插件。 1、vetur插件的安装 该插件是vue文件基本语法的高亮插件,在插件窗口中输入vetur点击安装插件就行,装好