一些工作中遇到的小问题,以及一些小技巧积累,慢慢更新
比较不错的一个在线工具网站http://tool.oschina.net/ 1、问题描述:工作中经常用到UE,每次修改文件后,UE会保存一个bak后缀的文件,不想再生成这类文件。 解决方法: 打开UE菜单中 高级-配置-文件处理-备份 选择左侧的不备份 就可以了。 2、问题描述:从SV
比较不错的一个在线工具网站http://tool.oschina.net/
1、问题描述:工作中经常用到UE,每次修改文件后,UE会保存一个bak后缀的文件,不想再生成这类文件。
解决方法: 打开UE菜单中 高级->配置->文件处理->备份 选择左侧的不备份 就可以了。
2、问题描述:从SVN上以前CHECK的代码,忘记了地址
解决方法:在以前下载的项目文件上右键->属性,多了个Subversion栏,选中Subversion栏,里面有一个URL,就是check代码的地址了。
3、问题描述:使用spring tools suit开发工具,服务器使用的是wildfly8.0,但sts对JBOSS的支持只到5.0
解决方法:打开help->install new software
http://download.jboss.org/jbosstools/updates/stable/kepler/ 名称可以随便写
点击OK->NEXT进入窗口,选择全选,一路向下,完成安装,提示需要重启IDE
重启IDE后在Windows->Preference->Server->Runtime Environment 中即可以添加Wildfly了
4、问题描述:新打开的Eclipse开发工具中不显示代码行数
解决方法:打开Windows->Preference->General->Editors->Text Editors 选中Show Line numbers
5、问题描述:SVN下载的代码有时需要解除与SVN的关联
解决方法:新建一个记事本,粘贴如下代码,保存为reg后缀文件,双击该文件执行
Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN] @="删除该目录下面.svn文件" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN\command] @="cmd.exe /c \"TITLE Removing SVN Folders in %1 && COLOR 9A && FOR /r \"%1\" %%f IN (.svn) DO RD /s /q \"%%f\" \""
执行完成后,选中项目右键,出现删除SVN文件的菜单,即可解除与SVN的关联。
如果要解除右键中该菜单,则再按照上面步骤执行下面代码即可
<pre name="code" class="html">Windows Registry Editor Version 5.00 [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN]
6、问题描述:Eclipse中有时我们需要复制一个工程为新工程
解决方法:1、进入该工程跟目录,直接复制一份备份工程,例如“testA”工程,复制一份就为“testA备份”,直接重命名“testA备份”为“testB”
2、进入testB工程目录下,修改工程中.project文件中
3、进入testB工程目录下的.settings文件下,修改org.eclipse.wst.common.component文件中
7、问题描述:数据库用的mysql,执行一个关联操作时报错 Every derived table must have its own alias
假设SQL语句为 Select * From (Select A.*,B.* From A Left Join B On A.xx=B.xx)
解决方法:mysql中进行嵌套查询的时候,子查询的结果作为一个派生表来进行上一级查询的时候,派生表必须指定一个别名。
Select * From (Select A.*,B.* From A Left Join B On A.xx=B.xx) As Test 这样即可执行成功。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Win11 Tips Sharing: One trick to skip Microsoft account login Windows 11 is the latest operating system launched by Microsoft, with a new design style and many practical functions. However, for some users, having to log in to their Microsoft account every time they boot up the system can be a bit annoying. If you are one of them, you might as well try the following tips, which will allow you to skip logging in with a Microsoft account and enter the desktop interface directly. First, we need to create a local account in the system to log in instead of a Microsoft account. The advantage of doing this is

Angular.js is a freely accessible JavaScript platform for creating dynamic applications. It allows you to express various aspects of your application quickly and clearly by extending the syntax of HTML as a template language. Angular.js provides a range of tools to help you write, update and test your code. Additionally, it provides many features such as routing and form management. This guide will discuss how to install Angular on Ubuntu24. First, you need to install Node.js. Node.js is a JavaScript running environment based on the ChromeV8 engine that allows you to run JavaScript code on the server side. To be in Ub

A friend's computer has such a fault. When opening "This PC" and the C drive file, it will prompt "Explorer.EXE Windows cannot access the specified device, path or file. You may not have the appropriate permissions to access the project." Including folders, files, This computer, Recycle Bin, etc., double-clicking will pop up such a window, and right-clicking to open it is normal. This is caused by a system update. If you also encounter this situation, the editor below will teach you how to solve it. 1. Open the registry editor Win+R and enter regedit, or right-click the start menu to run and enter regedit; 2. Locate the registry "Computer\HKEY_CLASSES_ROOT\PackagedCom\ClassInd"

Windows updates may cause some of the following problems: 1. Compatibility issues: Some applications, drivers, or hardware devices may be incompatible with new Windows updates, causing them to not work properly or crash. 2. Performance issues: Sometimes, Windows updates may cause the system to become slower or experience performance degradation. This may be due to new features or improvements requiring more resources to run. 3. System stability issues: Some users reported that after installing Windows updates, the system may experience unexpected crashes or blue screen errors. 4. Data loss: In rare cases, Windows updates may cause data loss or file corruption. This is why before making any important updates, back up your

In C language, it represents a pointer, which stores the address of other variables; & represents the address operator, which returns the memory address of a variable. Tips for using pointers include defining pointers, dereferencing pointers, and ensuring that pointers point to valid addresses; tips for using address operators & include obtaining variable addresses, and returning the address of the first element of the array when obtaining the address of an array element. A practical example demonstrating the use of pointer and address operators to reverse a string.

We often create and edit tables in excel, but as a novice who has just come into contact with the software, how to use excel to create tables is not as easy as it is for us. Below, we will conduct some drills on some steps of table creation that novices, that is, beginners, need to master. We hope it will be helpful to those in need. A sample form for beginners is shown below: Let’s see how to complete it! 1. There are two methods to create a new excel document. You can right-click the mouse on a blank location on the [Desktop] - [New] - [xls] file. You can also [Start]-[All Programs]-[Microsoft Office]-[Microsoft Excel 20**] 2. Double-click our new ex

VSCode (Visual Studio Code) is an open source code editor developed by Microsoft. It has powerful functions and rich plug-in support, making it one of the preferred tools for developers. This article will provide an introductory guide for beginners to help them quickly master the skills of using VSCode. In this article, we will introduce how to install VSCode, basic editing operations, shortcut keys, plug-in installation, etc., and provide readers with specific code examples. 1. Install VSCode first, we need

When Outlook has problems updating your inbox, it can affect productivity. This article will introduce some simple troubleshooting steps to help you solve the problem and get Outlook back to normal. Why is Outlook always stuck updating the inbox? Outlook may be stuck updating the inbox. Common reasons include network problems, excessive mailbox capacity, and the impact of anti-virus software or firewalls. Corrupted external plug-ins or data files can also cause this to happen. Next, we'll explore these possible causes in detail and provide solutions. Fix Outlook Stuck Updating Inbox If Outlook is unable to update your inbox, please refer to the solutions listed below: Restart Outlook Disabled
